LTView

来源:互联网 发布:淘宝模特签约合同范本 编辑:程序博客网 时间:2024/05/29 15:25
签订UIAlertViewDelegate协议UIAlertView *alert = [[UIAlertView alloc] initWithTitle@"你好" message:@"不好" delegate:nil cancelButtonTItle:@"你猜" otherButtonTitles:@"不知道", nil];// 在提示框上出现输入框,可以设置输入框的样式alert.alertViewStyle = UIAlertViewStyleLoginAndPasswordInput;[alert show];- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {  }
0 0
原创粉丝点击