목록예전꺼(2014년이전꺼)/iOS (35)
liebus
출처 : http://www.youtube.com/watch?v=_yrzL6I9VNY 중간에 SVN등록시 ID/PW를 넣어도 반은이 없으면 터미널 실행 후 svn ls svnaddress 실행후 id 및 passworld입력 을 한번 해주면 됨 ex) xxx-ui-MacBook-Pro:~ xxx$ svn ls https://192.168.0.1/svn/test
아이폰 에서 이메일 발송부분을 구현 할려면 MessageUI.framework 를 추가해야 한다. 해더파일에 를 import 하고 MFMailComposeViewControllerDelegate Protocol를 사용해야 한다. 이 프레임워크를 사용하면 아이폰에서 기본으로 제공하는 E-Mail Component를 사용할 수 있다. //Send Mail MFMailComposeViewController *mailController = [[[MFMailComposeViewController alloc] init] autorelease]; mailController.mailComposeDelegate = self; [mcvc setSubject:@"Title"]; [mcvc setMessageBody:@"Co..
Xcode 4단축키 맵 입니다. 출처: http://cocoasamurai.blogspot.com/2011/03/xcode-4-keyboard-shortcuts-now.html 문제시 삭제 하겠습니다.
NSString *strTemp = @"test.PNG"; // 이미지 이름 NSString *temp=[NSString stringWithFormat:@"%@/Documents/%@", NSHomeDirectory(), strTemp); //Documents에서 strTemp이미지의 위치 얻는다. UIImage *iiTemp = [UIImage imageWithContentsOfFile:temp]; // Documents에서 이미지를 읽어 올때는 imageName은 안먹더라 // 꼭 imageWithContentsOfFile: 로 땡겨 오길 바람