我想把一个纽基百科页的“AlertView的子号,这个题目储存在我的阵列“通知”上。
在这里,我怎么做。
Wikipedia采用格式:http://en.wikipedia.org/wiki/<subject>
。 在我的阵列中,我有议题的文字条目。 我在被利用时希望在移动电话上开放。 到目前为止,没有uck子:
帮助请。 任何见解都会受到赞赏。
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
if (buttonIndex == 1) {
NSString *myString = [[NSString alloc] init];
myString = [array objectAtIndex:myInteger];
NSURL *theURL = [NSURL URLWithString:@"http://en.wikipedia.org/wiki/"];
NSString *halfURL = [NSString stringWithFormat:@"%@", theURL];
NSString *fullURL = [halfURL stringByAppendingString:myString];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:fullURL ]];
iii