技術:Objective-C中,Xcode的7是否可以將超鏈接添加到UIAlertController?
@property (nonatomic, copy) NSString *notes;
@synthesize notes;
example.notes = @"Click <a href='http://www.google.com'>here</a>";
NSString *msg = [@"" stringByAppendingFormat:@"%@", myAnnotation.notes];
UIAlertController *alertViewController = [UIAlertController alertControllerWithTitle: @"Title of Alert Box" message: msg preferredStyle: UIAlertControllerStyleAlert];
[alertViewController addAction: [UIAlertAction actionWithTitle: @"Close" style: UIAlertActionStyleCancel handler: nil]];
[self presentViewController: alertViewController animated: YES completion: nil];
試圖獲得一個鏈接出現在警告框,但沒有運氣。只需輸出爲純文本。
這甚至可能嗎?如果是這樣,用我上面的例子,你將如何實現它?
不,不可能。 'UIAlertController'只支持純文本。 – rmaddy
'NSString * msg = [@「」stringByAppendingFormat:@「%@」,myAnnotation.notes];'?爲什麼不''NSString * msg = myAnnotation.notes;'? – rmaddy
這只是一個例子。我將更多的符號添加到警告框,所以我需要追加它。 –