我有一个将用户 ID 和代码存储在 NSUSERDEFAULTS 中的应用程序我需要使用这些值才能让 UIWebView 访问 url:www.mywebsite.com/check.php?id=(idhere)&code=(idhere)。
我看过其他一些主题,但到目前为止似乎没有任何帮助。
我是这种语言的新手,所以感谢您的耐心等待。
杰克布朗。
我有一个将用户 ID 和代码存储在 NSUSERDEFAULTS 中的应用程序我需要使用这些值才能让 UIWebView 访问 url:www.mywebsite.com/check.php?id=(idhere)&code=(idhere)。
我看过其他一些主题,但到目前为止似乎没有任何帮助。
我是这种语言的新手,所以感谢您的耐心等待。
杰克布朗。
最简单的形式:
- (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];
}
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];