我有一个应用程序将用户ID和代码存储在NSUSERDEFAULTS中我需要使用这些值才能让UIWebView访问url:www.mywebsite.com/check.php?id =(ifhere)&amp ;code = (idhere)。
我已经看了一些其他主题,但到目前为止似乎没有任何帮助。
我是这种语言的新手,所以感谢您的耐心等待。
杰克布朗。
答案 0 :(得分:39)
最简单的形式:
- (void) viewDidLoad
{
[super viewDidLoad];
UIWebView *webView = [UIWebView alloc] initWithFrame:self.view.frame];
[self.view addSubview:webView];
NSString *url = @"http://google.com?get=something&...";
NSURL *nsUrl = [NSURL URLWithString:url];
NSURLRequest *request = [NSURLRequest requestWithURL:nsUrl cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData timeoutInterval:30];
[webView loadRequest:request];
}
答案 1 :(得分:10)
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
NSString *userId= [prefs stringForKey:@"userIdkey"];
NSString *code= [prefs stringForKey:@"codeKey"];
所以您的网址字符串将是,
NSString *urlStr = [NSString stringWithFormat:@"http://www.mywebsite.com/check.php?id=%@&code=%@",userId,code];