반응형 Developer217 화면캡쳐 카드 앨범에 저장하기 카드 보내기 기능 때문에 ..화면을 저장해야 했다 ...맥부기에서 검색 결과 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. 기본문법 인자의 지시자:(타입)인자의 이름예) - (void)setWidth:(float)width height:(float)height 셀렉터의 응답요청id objSEL sel = @selector(start:);if([obj respondsToSelector:sel)]{[obj performSelector:sel withObject:self]} IBaction 으로 구현 되어 있는 메소드에게 이벤트 메시지를 보낼때 - (IBAction)editDone:(id)sender; //선언부 [self editDone:self.view] ; //메시지 전송부 특정 객체에서 해당 객체의 클래스를 가져올 수 있는 명령은 다음과 같다. Class myClass = [myObject class];NSLog(@"my class.. 2013. 2. 7. View Font Change : Font name, Size, Color 폰트 이름과 사이즈 결정 [self.textView setFont:[UIFont fontWithName:@"Marker Felt" size:14]]; 아래는 폰트 토글 칼라 결정 - (IBAction)colorA:(id)sender{ if ([self.textView textColor] != [UIColor orangeColor]) { [self.textView setTextColor:[UIColor orangeColor]]; } else { [self.textView setTextColor:[UIColor blueColor]]; } 2013. 2. 1. 인스턴스 생성 및 관리 Fraction *myFraction = [[Fraction alloc] init]; 1. Fraction *myFraction인스턴스 생성2. [Fraction alloc]메모리 할당3. [Fraction init]할당 된 메모리 초기화 [myFraction setNumerator: 1]; 인스턴스에게 메시지를 보냄.. 아래는 같은 표현식이다. instance.property = value[instance.setProperty:value] ( 데이타형) 종류는 int, double, float, char, id id 가 기본 인스턴스 형 == 닷넷의 object 2013. 1. 30. 이전 1 ··· 49 50 51 52 53 54 55 다음 반응형