1
2
3
4
5
6
| // 記得在 header 檔裡引入 QuartzCore
#import <QuartzCore/QuartzCore.h>
UIView *sampleView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 32, 32)];
sampleView.backgroundColor = [UIColor whiteColor]; // 把背景設成白色
// sampleView.backgroundColor = [UIColor clearColor]; // 透明背景
|