一,效果圖。二,工程目錄。三,代碼。//點擊任何處,出現城市-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ UIActionSheet *city=[[UIActionSheet alloc] initWithT...
一,效果圖。
二,工程目錄。
三,代碼。
//點擊任何處,出現城市
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UIActionSheet *city=[[UIActionSheet alloc] initWithTitle:@"城市選擇" delegate:self cancelButtonTitle:nil destructiveButtonTitle:nil otherButtonTitles:@"北京",@"上海",@"天津",@"重慶",@"哈爾濱",@"長春",@"沈陽",@"呼和浩特",@"石家莊",@"烏魯木齊",@"蘭州",@"西安",@"西寧",@"銀川",@"鄭州",@"濟南",@"太原",@"合肥",@"武漢",@"南京",@"成都",@"貴陽",@"昆明",@"南寧",@"拉薩",@"杭州",@"南昌",@"廣州",@"福州",@"臺北",@"海口",@"香港",@"澳門", nil];
city.backgroundColor=[UIColor orangeColor];
[city showInView:self.view];
}