我在我的應用程序中有一個MKmapView。現在我想添加框架我的MKmapView。我寫的代碼如下:想要在mkmapview中添加框架
- (id)initWithFrame:(CGRect)frame
{
// Initialization code
time=[[UILabel alloc] initWithFrame:CGRectMake(10, 10, 200, 21)];
time.textColor=[UIColor blackColor];
[time setFont:[UIFont boldSystemFontOfSize:18]];
[time setBackgroundColor:[UIColor whiteColor]];
[time addSubview:time];
time.alpha=0.8;
return time;
}
但框架不出現在我的MKmapView。
請幫我。
thanx提前。
replace [time addSubview:time];與[self addSubview:time]; – Maulik