一,效果圖。 二,代碼。 ViewController.m ...
一,效果圖。
二,代碼。
ViewController.m
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
//提示label
UILabel *alertLabel=[[UILabel alloc]initWithFrame:CGRectMake(0, 50, 320, 30)];
alertLabel.backgroundColor=[UIColor clearColor];
alertLabel.text=@"你可以通過在地圖上拖動地標獲取門店的詳細地址";
alertLabel.textAlignment=NSTextAlignmentCenter;
alertLabel.textColor=[UIColor grayColor];
alertLabel.font=[UIFont systemFontOfSize:10];
[self.view addSubview:alertLabel];
}