일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- V8 Engine
- appbarlayout
- apk 다운사이징
- Android
- SO 파일
- FlexiblePageView
- sha1 convert hashkey
- 인증서 정보 뽑아내기
- apns
- JavaScript Engine
- ios framework
- IOS10
- android log dump
- v8 engine xcode build
- Push
- Objective C
- embedd
- Android NDK시스템
- apache
- ios
- 공인인증서 만료일
- Magnify Anim
- java
- Status Bar
- Google V8 Engine
- 공인인증서 정보
- 안드로이드
- PageControl
- IMAGE
- so file
- Today
- Total
목록macos | ios (13)
caTea 블로그
먼저 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..