반응형
rss 아이콘 이미지

Search

'IB없이개발하기'에 해당되는 글 1건

  1. 2011.05.04 [IB없이 개발하기]UIButton 넣기

[IB없이 개발하기]UIButton 넣기

개발/개발팁 2011. 5. 4. 17:26 Posted by 법당오빠
반응형
UIImage *stampImg;

CGRect frame = CGRectMake(5 + (80 * (i % 4)), (70 * (i / 4)), 60, 60);
stampbtn = [[UIButton alloc] initWithFrame:frame];

stampImg = [[UIImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:[NSString stringWithFormat:@"emo_%02d", i + 1] ofType:@"png"]];
[stampbtn addTarget:self action:nil forControlEvents:UIControlEventTouchUpInside];
[stampbtn setBackgroundImage:stampImg forState:UIControlStateNormal];
[stampbtn setBackgroundImage:stampImg forState:UIControlStateHighlighted];
[stampImg release];
[stampScoll addSubview:stampbtn];
반응형