폼의 입력란 클릭하면 키보드가 화면을 가리게 되는데 이때 스크롤뷰의 크기를 키보드 높이만큼 빼주면 스크롤뷰가 스크롤을 표시하게 되어 키보드가 올라와 있는 상태에서 다른 입력 뷰들을 볼 수 있게 하는 iOS 5 앱 만들때 기존에 썼던 코드들을 썼는데 젠장할... Scroll Indicator 나타나지 않는것이었다. 삽질의 시간 후에 알게되었지만 예전에 사용했던 xib은 스크롤 지시자가 잘 나타나서 살펴보니 AutoLayout 이 un-check 되어 있었다. 결국, Auto Layout 상에서 UIScrollView를 동작시킬 방법을 구글링 하고 삽질한 끝에 아래의 링크를 통하여 스크롤 문제를 해결했다. http://www.g8production.com/post/57513133020/auto-layout-..
http://stackoverflow.com/a/9860283Nonatomicnonatomic은 다중 threading 목적들에 사용된다. If we have set the nonatomic attribute at the time of declaration, then any other thread wanting access to that object can access it and give results in respect to multi-threading.Copycopy는 object가 가변적일때 사용된다. Use this if you need the value of the object as it is at this moment, and you don't want that value to reflect..
http://stackoverflow.com/a/8299371You can run a dedicated Zombies Instrument.Hit CMD + i to profile the app and select the Zombies Instruments (You must running on the simulator)좀비 도구로 개략을 볼 수 있다.앱 프로파일을 위해 커맨드 + i 단축키를 누르고 Zombies Instruments 선택. (시뮬레이터 상에서 실행해야 한다)실행하면 Zombie Messaged 라는 팝업이 잠깐 뜨는데 타임라인에 색으로 강조 표시된것을 클릭하면 팝업이 다시 뜬다.Done 버튼 클릭하면 닫히니까 메세지 문장 끝의 화살표를 눌러보면 아래에 있는 Detail 패널(CMD + D..
내용 텍스트의 길이에 맞추어 높이가 자동으로 조절되는 뷰를 만들기 위해 uilabel dynamic height 의 검색어로 거의 하루종일 구글링 해가며 씨름했지만 https://gist.github.com/danielphillips/1005520 http://www.cimgf.com/2009/09/23/uitableviewcell-dynamic-height/ http://www.samrayner.com/posts/dynamic-tableview-cells/ 위 주소들에 보이는 등의 코드들을 아무리 써봐도 높이 조절이 되지 않았다. (결론적으로, 저 코드들만 놓고 보자면 옳다. 현재 iOS에선 deprecated 된 부분들만 치환한다면...)저런 올바른 코드들이 먹히지 않았던 이유는 밤 11시가 넘어서야..
http://nsscreencast.com/episodes/8-automatic-uitableview-paging 프로세스현재페이지 = 0 으로 부여.UITableView가 보여지면서 delegate 중 numberOfRowsInSection 메쏘드 작동.현재 페이지가 0이므로 1개의 셀(loadingCell 메쏘드로 만들어지는...) 있다고 리턴.cellForRowAtIndexPath 메쏘드 작동되며 현재 indexPath, indexNodes 모두 nil 상태이므로 loadingCell 메쏘드 작동시켜 activityIndicator가 있는 로딩셀을 만들고 리턴.셀이 보여질때 willDisplayCell 메쏘드 호출되는데 현재 셀이 로딩셀이면 현재페이지+1 하고 네트워크로부터 데이터 로딩 시작하는 f..
SDWebImage Integrate한 iOS Project를 빌드까지 이상없이 잘 되어서 Product > Archive 했는데Lexical or Preprocessor Issue 'SDWebImage/UIImageView+WebCache.h' file not found오류가 발생했다. 디버거는#import 라인에서 오류를 알려주며 멈춰있었다. 구글링과 스택오버플로를 통해 찾아낸 해결법프로젝트를 클릭Target > Build settings검색 입력란에 'header search paths' 입력Header Search Paths의 오른쪽 값 부분 더블클릭아래의 3개 중 마지막것만 일단 빼고 입력하는데, 앞/뒤에 아무것도 붙이지 않아야 함 $(TARGET_BUILD_DIR)/usr/local/lib/i..
디버깅 셋팅1. XCode 왼쪽 위 Scheme에 마우스를 올리고 2. Edit Scheme... 선택 3. 나타나는 창에서 아래 이미지의 붉은 표시 부분과 같이 입력 NSZombieEnabled : YES MallocstackLoggingNoCompact : 1 4. Diagnostics 탭 클릭하고 아래 그림에서와 같이 체크 후 [OK] 버튼 클릭 메모리 추적 (Simulator에서만 동작함)위의 설정을 마쳤다면 아래와 같이 오류가 발생한 곳의 주소 정보를 얻을 수 있음-[CFString release]: message sent to deallocated instance 0x5e4780하단의 검은색 디버그 구역(Shift + Cmd + Y)의 (gdb)프롬프트 뒤에 다음과 같은 명령 입력info ma..
'Oh hai!', 'badge' => 1, 'sound' => 'default'); $output = json_encode($payload); $token = pack('H*', str_replace(' ', '', $token)); $apnsMessage = chr(0) . chr(0) . chr(32) . $token . chr(0) . chr(strlen($output)) . $output; fwrite($apns, $apnsMessage); fclose($apns);}?>
require_once('class_DbConnect.php'); require_once('class_APNS.php'); // CREATE DATABASE OBJECT ( MAKE SURE TO CHANGE LOGIN INFO IN CLASS FILE ) $db = new DbConnect('localhost', 'DB계정아이디', 'DB계정암호', 'DB명'); $db->show_errors(); // FETCH $_GET OR CRON ARGUMENTS TO AUTOMATE TASKS $apns = new APNS($db); /** /*ACTUAL SAMPLES USING THE 'Examples of JSON Payloads' EXAMPLES (1-5) FROM APPLE'S WEBSITE. *L..
- Total
- Today
- Yesterday
- Make Use Of
- How to geek
- 인터넷 통계정보 검색시스템
- 트위터 공유 정보모음
- 웹표준KR
- 치우의 컴맹탈출구
- Dev. Cheat Sheets
- w3schools
- Dev. 조각들
- ASP Ajax Library
- CSS Tricks
- WebResourcesDepot
- jQuery Selectors Tester
- DeveloperSnippets
- Smashing Magazine
- Nettuts+
- devListing
- 웹 리소스 사이트(한)
- Mobile tuts+
- Dream In Code
- Developer Tutorials
- CSS3 Previews
- 자북
- 안드로이드 사이드
- Code Visually
- Code School
- SQLer.com
- 무료 파워포인트 템플릿
- iconPot
- Free PowerPoint Templates
- Design Bombs
- Web Designer Wall
- 1st Webdesigner
- Vandelay Design
- 무료 벡터 이미지 사이트들
- Tripwire Magazine
- Web TrendSet
- WebMonkey
- 윤춘근 프리젠테이션 디자이너 블로그
- cz.cc 무료 DNS
- [웹하드] MediaFire
- [웹하드] DivShare
- 한컴 인터넷 오피스
- Linux
- 워드프레스
- git
- 한글
- iis
- 안드로이드
- Mac
- ASP
- iphone
- nodejs
- API
- IE
- laravel
- centos
- nginx
- JSON
- Debug
- mssql
- IOS
- JQuery
- Wordpress
- sencha touch
- classic asp
- Prototype
- Chrome
- javascript
- Android
- PHP
- CSS
- Docker
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |