아이폰 개발(129)
-
Remote Notification (Silent Push Notification) 관련 레퍼런스
Multitasking in iOS 7 : Background Fetch, Remote Notification, Background Transfer Servicehttp://meetkei.com/?p=2557 iOS Silent Push notifications http://hayageek.com/ios-silent-push-notifications/ *** Silent Push notification (Remote Notification) 구현방법http://grandbig.github.io/blog/2014/02/22/silentremotenotification/http://blog.naver.com/PostView.nhn?blogId=newyorkinms&logNo=220526394264http:/..
2016.04.15 -
iOS 비콘 연동 관련 레퍼런스 모음
NORDIC 공식 홈페이지에는 iOS, Android를 지원하는 훌륭한 예제 소스를 제공한다. 아주 멋진 기업이다~! https://www.nordicsemi.com/Products/Nordic-mobile-Appshttps://github.com/NordicSemiconductor/IOS-nRF-Beaconshttps://github.com/NordicSemiconductor/IOS-DFU-Libraryhttps://github.com/NordicSemiconductor/IOS-nRF-Toolbox --> 결정적인 샘플 소스!!!! (강추) CLBeaconRegion과 CLLocationManager를 이용하여 비콘 감지를 하는 예제 --> 다 좋은데, 감지가 안되는 비콘이 있음http://digita..
2016.04.15 -
iOS9, Xcode7 대응 작업
* 웹 사이트 접속이 안되는 문제Transport Security has Blocked a cleartext HTTPhttp://stackoverflow.com/questions/31254725/transport-security-has-blocked-a-cleartext-http * 앱 실행시 크래시되는 문제“Application windows are expected to have a root view controller at the end of application launch” http://stackoverflow.com/questions/30884896/application-windows-are-expected-to-have-a-root-view-controller-at-the-end-of-a * ..
2016.03.09 -
iOS8 대응 노트
- 멀쩡하던 UIView의 drawRect에서 UIImage 객체를 drawInRect할 때 다운되는 현상 발생UIImage 객체를 로컬로 변경하니 문제 없이 동작됨http://stackoverflow.com/questions/2455161/unrecognized-selector-sent-to-instance - 카메라 촬영시 다운되는 문제 발생 (1) [self presentViewController:picker animated:YES completion:NULL]; 으로 변경 (2) - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info 추가http:/..
2014.11.13 -
Javascript Alert, Confirm 처리
Android 처럼 WebView에서 Javascript에서 호출되는 Alert, Confirm에 대해서 별도 처리를 해주어야 한다.그러지 않으면 디폴트로 타이틀에 도메인이 노출되도록 되어 있다.http://kwebtoon.tistory.com/3
2014.11.12 -
네트워크 연결 상태 체크하기
Reachability를 이용하면 손쉽게 구현이 가능하다.http://reysion.tistory.com/48http://blog.yagom.net/273
2014.11.12