기술/iOS29 XCode에서 Syntax Color가 적용이 해제 되었을 때. XCode에서 가끔씩 업그래이드 후에 프로젝트를 열 경우 Syntax Color가 풀려있는 경우가 있음. 1. Menu Window > Organizer > Projects 에서 해당 프로젝트 선택 > Derived Data를 Delete 시켜주기 > XCode restart. 그래도 안되면,2. Product > Clean > Build 시켜주기. 2013. 9. 25. iPhone URL Schemes iPhone에서 사용되는 URL Schemes가 정리 된 곳.IPhone URL Schemes- This page centralizes code samples for URL schemes available in many iPhone applications, not only in Apple's but in many others. It also includes programming tips and references about implementing apps registering or consuming URL schemes.http://wiki.akosma.com/IPhone_URL_Schemes 2013. 4. 29. XCode Debugging tool Instrument 간략 설명. XCode로 디버깅 할 때 쓰는 Instrument에서 컬럼에 대한 간략하게 정리해본다. - Live Bytes : 해당 Category의 객체에 현재 할당(allocated)된 메모리의 사용량을 보여준다.- # Living : 메모리에 남아 있는 해당 Category의 객체의 수를 보여준다.- Overall Bytes : 해당 Category의 객체가 현재까지 사용한 메모리의 총량을 보여준다. 총량은 메모리에 남아 있지 않은 것도 포함한다. - #Overall : 현재까지 사용한 객체의 총 수를 보여준다. - #Transitory : #Living 과 #Overall의 차이. 참고 : http://d.hatena.ne.jp/shu223/20110502/1304333582https://developer... 2013. 3. 15. iPhone에서 두 개의 앱이 데이터 공유하는 방법. 아이폰에서 두개의 앱간에 데이터를 공유하기 위한 방안이 필요하여 한번 알아보았다.역시나 방법은 별로 없다. ;;;우선 기본적으로 아이폰은 샌드박스형으로 타 앱과 공유를 할 수 없다.다만, 일부 지원과 편법을 이용할 수는 있다. 1. 정식(?) 1) URL Scheme 이용. ; 해당 앱을 알고 있는 경우에나 가능할 듯. 예제) 발송측 : [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"theOtherApp://dataToShare"]]; 수신측 : -application:handleOpenURL: 2) UIPasteboard 을 이용. ; Copy&Paste 를 이용하는 것인데, 다른 것이 복사가 되면 이전 데이터는 안녕~ 예제) UI.. 2013. 3. 5. URL Loading System Error Codes URL Connection 중에 발생하는 오류들. URL : http://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Miscellaneous/Foundation_Constants/Reference/reference.htmlURL Loading System Error CodesThese values are returned as the error code property of an NSError object with the domain “NSURLErrorDomain”.enum { NSURLErrorUnknown = -1, NSURLErrorCancelled = -999, NSURLErrorBadURL = -1000, .. 2013. 1. 9. [링크] Xcode를 이용한 자동 테스팅 시작하기 파트 1/2 꼭 다시 해 봐야할 자동 테스팅.http://www.raywenderlich.com/ko/25808/xcode%EB%A5%BC-%EC%9D%B4%EC%9A%A9%ED%95%9C-%EC%9E%90%EB%8F%99-%ED%85%8C%EC%8A%A4%ED%8C%85-%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0-%ED%8C%8C%ED%8A%B8-12 2013. 1. 2. 이전 1 2 3 4 5 다음