본문 바로가기

IOS17

iOS 개발 자료 -푸쉬 서버 개발 관련 자료- 이지 APNS 오픈 소스 라이브러리 http://www.easyapns.com/ 구글 코드 APNS 오픈 소스 http://code.google.com/p/apns-php/ 서버 튜토리얼 http://blog.boxedice.com/2009/07/10/how-to-build-an-apple-push-notification-provider-server-tutorial/ -label이나 textView에 현재 시간을 표시하고 싶습니다- NSDate *t = [NSDate date]; NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; NSString *timeStr = [formatter setDateFormat:@"HH.. 2016. 9. 21.
tableview row insert - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { NSInteger maxPurchaseListCountInPage = 0; UIInterfaceOrientation orientation = [[UIApplicationsharedApplication] statusBarOrientation]; if( [SystemInfo isPad] ){ if( UIInterfaceOrientationIsLandscape(orientation) ){ }else{ } }else if( [SystemInfo isPhone5] ){ if( UIInte.. 2016. 9. 5.
애플, iOS9.2.1 정식 업데이트 배포.. 버그 수정·성능 향상 19일(현지시간) 애플이 최신 모바일 운영체제(OS) iOS 9.2.1 정식 업데이트를 배포했다.이번에 배포된 업데이트는 마이너 업데이트로 주로 버그 들이 수정됐다. 애플은 이번 업데이트에서 보안 업데이트와 MDM 서버를 사용하는 경우 앱 설치를 완료하지 못하는 버그 및 기타 버그 수정, 성능이 향상됐다고 밝혔다.iOS 9.2.1과는 달리 현재 베타 테스트를 진행하고 있는 iOS 9.3에서는 새로운 기능이 대폭 추가된다.야간에 iOS 기기 사용 시 블루 라이트를 자동으로 조절해주는 나이트 시프트(Night Shift) 기능과 메모 앱에 암호를 걸수 있는 기능이 추가됐으며 아이폰6S에 추가된 3D 터치를 이용해 날씨, 설정, 건강, 앱스토어 등의 기능들을 보다 빠르게 이용할 수 있다. 또, 일부 사용자들에.. 2016. 1. 20.
ARC forbids explicit message send of release ARC 문제 해결 - build settings -> Apple LLVM 7.0 - Language - Obejctive -C -> Objective-C Automatic Reference Counting No로 변경 2015. 12. 24.