Tag: Swift uialertview

简单的应用程序委托方法显示一个UIAlertController(在Swift中)

在obj-C中,当另一个iOS应用程序(邮件附件,网页链接)被点击与我的应用程序相关的文件或链接。 然后,我会在openURL或didFinishLaunchingWithOptions上捕获这个,并显示一个UIAlertView来确认用户想要导入数据。 现在, UIAlertView贬值,我正在尝试做同样的事情,但不是真的确定最好的方式来做到这一点? 我的应用程序从另一个应用程序接收数据时,显示简单的警报时遇到问题。 这个代码在Objective-C中使用UIAlertView : – (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation { if (url) { self.URLString = [url absoluteString]; NSString *message = @"Received a data exchange request. Would you like to import it?"; importAlert = [[UIAlertView alloc] initWithTitle:@"Data Received" message:message delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil]; [importAlert show]; } return YES; } 但是,当我尝试切换到UIAlertViewController和Swift我似乎无法find一个简单的方法来显示消息: […]

如何将UITextView插入iOS中的UIAlertview

另外,我想这个UITextView与XXX.txt中的文本文件。它在i​​OS6中工作正常,但内容不出现在iOS7的UIAlertview。 我的代码如下: UITextView *tosTextView = [[UITextView alloc]initWithFrame:CGRectMake(12, 48, 260, 140)]; NSString *path = [[NSBundle mainBundle] pathForResource:@"TJTermsof Service" ofType:@"txt"]; NSString *content = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:NULL]; [tosTextView setText:content]; tosTextView.textColor=[UIColor blackColor]; tosTextView.font = [UIFont fontWithName:@"LuzSans-Book" size:17]; tosTextView.editable = NO; customAlert = [[UIAlertView alloc]initWithTitle:@" TOS \n\n\n\n\n\n " message:@"" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"I Agree",nil]; [customAlert addSubview:tosTextView]; [customAlert show];