본문 바로가기

Programming/iOS

(92)
UIWebView에 Cookie 실어 보내기 http://www.picomax.net/xe/study/22881 iOS에서 쿠키를 사용하는 방법에 대한 소개http://maskkwon.tistory.com/193
맥북에서 Fiddler 사용하기 설치http://fiddler.wikidot.com/monohttp://www.mono-project.com/download/ 사용법http://www.engadget.com/2011/02/21/how-to-inspect-ioss-http-traffic-without-spending-a-dime/
presentModalViewController 호출 시 hierarchy 오류 UINavigationViewController내의 modalView가 최상위로 올려져 있는 상태에서 다시 modalView를 호출하려고 하면 Warning이 날 수 있습니다. 이는 modalView위에서 presentModalViewController를 호출해야하는데 UINavigationViewController에서 다시 호출하려고 하다 그런 문제가 생기기 때문입니다. Warning: Attempt to present on whose view is not in the window hierarchy! 위의 에러가 났을 경우에는 아마 대부분 이렇게 호출을 했을 것입니다. [self presentModalViewController:test2..
Node.js를 통한 Push Test http://blog.saltfactory.net/node/implementing-push-notification-service-for-ios.html
ios sqlite 정렬 기준 설정 iOS의 sqlite는 기본적으로특수기호 - 영어 - 한글 순으로 정렬하도록 되어 있다. Andoid 같은 경우COLLATE LOCALIZED를 통해해당 폰의 정렬 기준에 따라 바꿀 수 있지만iOS는 해당 구문을 지원하지 않는다(안드로이드에서 커스텀하게 제공하는 문구인듯 하다) 그래서ORDER BY에서 정렬 문자 순서를 원하는 대로 지정하도록 해야결과값 출력 시 원할하게 나올 듯 하다. 아래는구문이다. 샘플 테이블Table Name : SampleID Value 1 (주)다음 2 Daum 3 티스토리 4 카카오 5 iOS 샘플 쿼리문SELECT * FROM Sample ORDER BY (CASE WHEN substr(Value, 1, 1) BETWEEN 'ㄱ' AND '힣' THEN 2 WHEN subs..
UIImage 특정 색상을 투명처리 UIImage 특정 색상을 투명처리하고 싶을 때 사용하는 방법이다 - (UIImage *)changeWhiteColorTransparent:(UIImage *)image { CGImageRef rawImageRef= image.CGImage; const float colorMasking[6] = {222, 255, 222, 255, 222, 255}; // 흰색 // const float colorMasking[6] = {0, 0, 0, 0, 0, 0}; // 검정색 UIGraphicsBeginImageContext(image.size); CGImageRef maskedImageRef = CGImageCreateWithMaskingColors(rawImageRef, colorMasking); { //if..
How To Use NSOperations and NSOperationQueues Objective-Chttp://www.raywenderlich.com/19788/how-to-use-nsoperations-and-nsoperationqueues in Swifthttp://www.raywenderlich.com/76341/use-nsoperation-nsoperationqueue-swift
Jenkins 설명 자료 http://blog.naver.com/xodhks_0113/196890219

반응형