UImage를 포토앨범에 저장 공유 링크 만들기 Facebook X Pinterest 이메일 기타 앱 - 10월 13, 2014 // UImage를 포토앨범에 저장 UIImageWriteToSavedPhotosAlbum( UI이미지명, self, @selector(savingImageIsFinished:didFinishSavingWithError:contextInfo:), nil); 공유 링크 만들기 Facebook X Pinterest 이메일 기타 앱 댓글 제갈식2014년 10월 13일 오전 5:19// 보존 완료시-(void)savingImageIsFinished:(UIImage*)image didFinishSavingWithError:(NSError*)error contextInfo:(void*)contextInfo{ // 경고창 표시. UIAlertView *alert = [[[UIAlertView alloc] initWithTitle:nil message:@"保存しました" delegate:nil cancelButtonTitle:nil otherButtonTitles:@"OK", nil] autorelease]; [alert show];}답글삭제답글답글댓글 추가더 로드하기... 댓글 쓰기
Ubuntu 미세먼지 팁들 - 8월 08, 2017 sudo apt-get install lsb-release scrot wget http://github.com/downloads/djmelik/archey/archey-0.2.8.deb sudo dpkg -i archey-0.2.8.deb archey install 자세한 내용 보기
텍스트필드, TextField 넣고 경고창으로 출력 - 11월 04, 2014 https://www.dropbox.com/home/%EC%86%8C%EC%8A%A4%EC%BD%94%EB%93%9C%201%EA%B0%9C 자세한 내용 보기
// 보존 완료시
답글삭제-(void)savingImageIsFinished:(UIImage*)image
didFinishSavingWithError:(NSError*)error contextInfo:(void*)contextInfo{
// 경고창 표시.
UIAlertView *alert
= [[[UIAlertView alloc] initWithTitle:nil
message:@"保存しました" delegate:nil
cancelButtonTitle:nil otherButtonTitles:@"OK", nil] autorelease];
[alert show];
}