일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 공인인증서 정보
- Android
- appbarlayout
- PageControl
- Magnify Anim
- V8 Engine
- 안드로이드
- apk 다운사이징
- Push
- embedd
- ios framework
- Google V8 Engine
- apache
- sha1 convert hashkey
- Android NDK시스템
- JavaScript Engine
- android log dump
- SO 파일
- so file
- 공인인증서 만료일
- FlexiblePageView
- v8 engine xcode build
- 인증서 정보 뽑아내기
- ios
- Objective C
- apns
- Status Bar
- IOS10
- java
- IMAGE
- Today
- Total
목록ios (10)
caTea 블로그
기본적으로 Swift의 컬렉션 구조의 세가지 타입이 있다 Dictionary, NSDictionary, MutableDictionary 가장 큰 차이점은 타입 설정유무다 NSDictionary 는 Object타입만 들어간다 하여 Int, float 등의 포인터 타입이 아닌경우 NSNumber형식으로 컨버팅후 사용해야 하지만 Swift의 Dictionary는 포인터 형식이 아닌 형식들도 값을 할당할수 있다. 내가 이해한 부분인것. 알아본바론 컴파일 시점엔 두타입이 동일하게 봄 Swift Dictionary Swfit NSDictionary 구조체 클래스 value type referance type 타입을 지정해야만 사용가능 Object type Swift Standard libraryCocoa libra..
ios 앱을 개발하다 framework를 개발할때가 있다 하지만 framework을 개발하면 phone framework하고 시뮬레이터용 프레임웍이 나온다 두개를 합쳐서 배포해야 둘다 작동된다. 밑의 코드는 두개를합쳐주는 역할을 한다. lipo -create -output "LastFramework" "ios-framework/PWAFramework.framework/PWAFramework" "simulator-framework/PWAFramework.framework/PWAFramework"
1. SSKeychain 클래스를 사용하고있다면 클래스명을 바꾸어야합니다 10에서 같은 명칭의 클래스가 있다고하네요 2. NSURLConnection NSURLSession 에 TLS핸드쉐이크 과정에서 RC4 암호화 방식을 지원 안한다네요 3. AVFramework delegate 가 바뀌었습니다 영상처리관련 앱들은 영향이 있을것으로예산됩다 4. 사파리의 웹뷰지오로케이션이 https d일 경우에만 지원됩니다 5. NSURLConnection 이 deprecate 되면서 NSURLSession 을 권장하고있습니다 6. 권한관련 이슈 이제 사진첩이나 주소록에 접근시 info.plist에 정의해주어여합니다 관련자료 - useyourloaf.com/blog/privacy-setting-in-ios-10
NSURLConnection 이 deprecate되면서 이걸사용해야한다 간단하게 사용하는 코드다 //헤더및 데이터 설정 NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init]; [request setURL:[NSURL URLWithString: @"요청URL"]; [request setHTTPMethod:@"POST"]; [request setValue:postLength forHTTPHeaderField:@"Content-Length"]; if( [APPDELEGATE.kUserAgent length] > 0 ){ [request setValue:@"유저에이전트" forHTTPHeaderField:@"User-Agent"]; } [reque..
/** * 디바이스 타입을 리턴한다 * * @return 해상도에 따른 디바이스 타입(0:default, 1:iPhone6(s), 2:iPhone6+(6s+)) */+ (int) deviceType{ int returnVal = DEVICE_DEFAULT; CGRect screenSize = [[UIScreen mainScreen] bounds]; int height = screenSize.size.height; switch (height) { case 667: //6 returnVal = DEVICE_6; break; case 736: //6Plus returnVal = DEVICE_6_PLUS; break; default: //default.. 480, 568, etc.. break; } return..
원문 : http://mobileappdreams.blogspot.kr/2014/06/differences-between-ios-and-android.html Tuesday, June 24, 2014Differences between iPhone and Android Push Notifications: [APNS Vs GCM] The documentation on how push works are clearly explained here on the following links:iOS, Android,Windows The above references should help you to understand how push notification works. I felt it would be repetiti..
먼저 parentController 와 childController 가 있다고 가정하자. 그다음 parentController 에서 childController 을 호출 한다. childController = [[childController alloc]init]; [self presentViewController: childController animated:YES completion:nil]; 이런식으로 화면을 띄우게 된다 상세하게 보면 틀린 구문 이지만 넘어간다. 이제 childController 가 뜬 상태에서 childController를 dissmiss 하고 parentController에서 특정 함수를 실행시키고 싶다. 이는 자바에서 onResultActivity() 와 같은 기능을 하는 함수..
일단 헤더 파일에 델리게이트를 등록해준다. ABPeoplePickerNavigationControllerDelegate 를 추가 다음 m 파일로 가서 - (void)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker didSelectPerson:(ABRecordRef)person property:(ABPropertyID)property identifier:(ABMultiValueIdentifier)identifier{ UIImage *photo = nil; // 주소록에 사람이미지가 있을 경우 저장 , 없을 경우 해당 이미지 삭제 if(ABPersonHasImageData(person)){ CFDataRef..
VIewController.h #import #import //프레임워크입니다. 추가해주세요 @interface ViewController : UIViewController{ NSTimer *timer; UIView *cameraView; dispatch_queue_t sampleBufferCallbackQueue; AVCaptureVideoDataOutput *output; AVCaptureSession *session; } @property (nonatomic, strong) NSTimer *timer; @property (nonatomic, strong) UIView *cameraView; @property(nonatomic, strong) AVCaptureSession *session; @prop..