一,效果圖。二,代碼。//點擊任何處,彈出提示選項-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ UIAlertView * alert=[[UIAlertView alloc] initWithTitl...
一,效果圖。
二,代碼。
//點擊任何處,彈出提示選項
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
UIAlertView * alert=[[UIAlertView alloc] initWithTitle:@"推薦給好友" message:nil delegate:self cancelButtonTitle:nil otherButtonTitles:@"Gmail",@"UC瀏覽器(樂園)",@"藍牙",@"信息", nil];
[alert show];
}