반응형 Developer/IOS70 xcode 배경 반복 .. textView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed: @"bg.png"]]; [textView setOpaque:NO]; [[textView layer] setOpaque:NO]; 2013. 3. 19. 멀티 애니메이션 #define RANDOM_INT(MIN,MAX) ( (MIN) + arc4random() % ((MAX+1)-(MIN)) ) //CGSize offSize = [UIScreen mainScreen].bounds.size; -(void)airAutoAnimation{ /* 움직이기 위한 대상 레이어를 만듭니다. */ CALayer *layer1 = [CALayer layer]; layer1.bounds = CGRectMake(0, 0, 20, 20); int x = RANDOM_INT(0, 320) ; int y = RANDOM_INT(0, 480) ; layer1.position = CGPointMake( x, y ); layer1.cornerRadius = 20; layer1.backgroundCol.. 2013. 3. 19. 동적 xib 파일 교체 요링겔님 블로그에서 퍼옴http://xajax.tistory.com/138 동적 xib 파일 교체1. willRotateToInterfaceOrientation 영역에서 정의해야 합니다. (UIViewController Event)2. toInterfaceOrientation 를 통해 회전상태를 알 수 있습니다.3. NSBundle을 통해 배열형태의 xib 파일을 가져옵니다. 첫 번째 요소가 최상위 계층의 UIView입니다.4. owner는 file's Owner(인터페이스 빌더에서 본...)를 말하며 self.view = [로드된 뷰] 로 교체합니다.5. self.view 에 반영이 되면 곧바로 IBOutlet 연결이나 IBAction이 적용되어 자연스럽게 사용할 수 있습니다./* 로테이션 xib .. 2013. 3. 19. IOS date 핸들링. NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; [formatter setDateFormat:@"YYYY-MM"]; NSString *CoverUrl = [NSString stringWithFormat:@"http://www.xxxxxx.com/mobile/images/cover/%@.png",[formatter stringFromDate:[NSDate date]]]; // NSLog [formatter release]; ////// 위에것이 더 사용하기 편한듯... NSDate *date = [NSDate date]; NSCalendar *calender = [NSCalendar currentCalendar]; NSCalendarUnit un.. 2013. 3. 18. 이전 1 ··· 10 11 12 13 14 15 16 ··· 18 다음 반응형