方法创建并显示确认iOS SDK
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了方法创建并显示确认iOS SDK相关的知识,希望对你有一定的参考价值。
Use like this: [self showConfirmation:@"May we send you information and offers by Email?" withMessage:@"1 email per week maximum"];
UIAlertView* confirmationView = [[UIAlertView alloc] initWithTitle:title message:message delegate:self cancelButtonTitle:NSLocalizedString(@"No", @"") otherButtonTitles:NSLocalizedString(@"Yes", @""), nil]; [confirmationView show]; [confirmationView release]; }
以上是关于方法创建并显示确认iOS SDK的主要内容,如果未能解决你的问题,请参考以下文章