如何从我的网站加载邮件,将其显示为我的iPhone应用程序上的提醒?
答案 0 :(得分:0)
假设您可以向http://mywebsite.com/statusmessage/
这样的网址发出请求并返回一个字符串,您可以像这样获取该字符串。
NSURL *url = [NSURL URLWithString:@"http://www.mywebsite.com/statusmessage/"];
NSError *error = nil;
NSString *returnString = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding error:&error];
if (error) NSLog(@"%@", [error localizedDescription]);
请记住将+stringWithContentsOfURL:encoding:error:
的编码参数与您正在使用的编码进行匹配。