반응형 Developer217 View Shadow UIView *testView = [[UIView alloc] initWithFrame:CGRectMake(20.0f, 50.0f, 280.0f, 100.0f)];UIBezierPath *shadowPath = [UIBezierPath bezierPathWithRect:testView.bounds]; testView.backgroundColor = [UIColor yellowColor];[testView.layer setMasksToBounds:NO];[testView.layer setShadowColor:[[UIColor blackColor] CGColor]];[testView.layer setShadowOffset:CGSizeMake(0.0f, 0.0f)];[testView.layer setShado.. 2013. 4. 9. 동적 버튼 생성및 핸들링 static NSMutableArray *btnArray = nil; // 전역 변수 선언 - (void)viewDidLoad { [super viewDidLoad];if (btnArray == nil) btnArray = [[NSMutableArray alloc] init]; // Array 생성 for(int i = 0; i 2013. 4. 3. 반올림 반올림 float i = 13.2555; float x = roundf(i*100)/100; NSLog(@" %f ",x); 이러면 될듯.... floorf() 2013. 4. 2. 랜덤하게 숫자 뽑기기 int random = (arc4random()%4); 2013. 4. 1. 이전 1 ··· 45 46 47 48 49 50 51 ··· 55 다음 반응형