반응형 Developer/IOS70 UIDocumenet 에 저장 하기.. /* 도큐멘트에 저장해야 할 경우... NSData *imageData = UIImagePNGRepresentation(image2save); // 저장하길 원하는 이미지 , 캡쳐한거나 카메라 것이나.. 기타... NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDirectory = [paths objectAtIndex:0];// 저장할 위치 가져오기 documentsDirectory = [documentsDirectory stringByAppendingPathComponent:@"파일명.jpg"]; [imageData writeToFile:do.. 2013. 2. 25. 마이피플에 메시지 보내기.. 마이피플에서 제공하는 클래스파일을 임포트 한후 보낼 이미지파일을 넣어준다. /// 마이피플 완성////////////////////////////////////////////////// /* MypeopleManager *myPeopleManager = [MypeopleManager alloc]; if (![myPeopleManager canOpenMypeopleURL]) { NSData *data = UIImagePNGRepresentation(image2save); [[MypeopleManager sharedInstance] sendMediaData:data fileName:@"mypeople.jpg"]; } [myPeopleManager release]; [myPeopleManager dealloc.. 2013. 2. 25. 키보드 높이 NSDictionary *userInfo = [notification userInfo]; // Get the origin of the keyboard when it's displayed. NSValue *aValue = [userInfo objectForKey:UIKeyboardFrameEndUserInfoKey]; // Get the top of the keyboard as the y coordinate of its origin in self's view's // coordinate system. The bottom of the text view's frame should align with the top // of the keyboard's final position. // CGRect keyboar.. 2013. 2. 21. 화면캡쳐 카드 앨범에 저장하기 카드 보내기 기능 때문에 ..화면을 저장해야 했다 ...맥부기에서 검색 결과 http://cafe.naver.com/mcbugi/257748얼렁뚱땅님의 해답이다. //캡쳐이미지 불러오기NSString *filePath = [NSHomeDirectory() stringByAppendingPathComponent: @"Documents/screenshot.png"];UIImage *m_img = [[UIImage alloc] initWithContentsOfFile:filePath]; //화면 캡쳐-(void)ScreenShot{ CGRect theScreenRect; theScreenRect = CGRectMake(0, 0, 320, 460); UIGraphicsBeginImageCo.. 2013. 2. 19. 이전 1 ··· 12 13 14 15 16 17 18 다음 반응형