반응형
# UILabel
UILabel *label;
label = [[UILabel alloc] init];
label.frame = CGRectMake(5 + (0 * (i % 25)), 39, 50, 20);
label.textAlignment = UITextAlignmentCenter;
label.backgroundColor = [UIColor clearColor];
label.font = [UIFont systemFontOfSize:10];
label.textColor = [UIColor whiteColor];
label.text = @"들어갈 텍스트";
UILabel *label;
label = [[UILabel alloc] init];
label.frame = CGRectMake(5 + (0 * (i % 25)), 39, 50, 20);
label.textAlignment = UITextAlignmentCenter;
label.backgroundColor = [UIColor clearColor];
label.font = [UIFont systemFontOfSize:10];
label.textColor = [UIColor whiteColor];
label.text = @"들어갈 텍스트";
반응형
'개발 > 개발팁' 카테고리의 다른 글
SVN 오류 해결법 (0) | 2011.06.21 |
---|---|
[IB없이 개발하기]UIImage 넣기 (0) | 2011.05.09 |
[IB없이 개발하기]UIButton 넣기 (0) | 2011.05.04 |
[IB없이 개발하기] 아이폰 키보드 감추기 (숨기기) (0) | 2011.05.04 |