从Xcode中的外部数据库加载消息

时间:2011-03-02 20:18:53

标签: iphone database xcode json

如何从我的网站加载邮件,将其显示为我的iPhone应用程序上的提醒?

1 个答案:

答案 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:的编码参数与您正在使用的编码进行匹配。