본문 바로가기
반응형

Developer217

마이피플과 카카오링크 로의 이미지 전달 각 사에서 제공하는 클래스를 임포트 한후 if (![KakaoLinkCenter canOpenStoryLink]) { return; } NSArray *imageArray = [NSArray arrayWithObject:[self dataFilePath:kFilename]]; NSDictionary *urlInfoDict = [NSDictionary dictionaryWithObjectsAndKeys: @"CloudAthlas", @"title", @"blahblahblah", @"desc", imageArray, @"imageurl", nil]; [KakaoLinkCenter openStoryLinkWithPost:@"text from Storylink http://www.youtube.com/watc.. 2013. 2. 26.
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.
반응형