20

我有一个将用户 ID 和代码存储在 NSUSERDEFAULTS 中的应用程序我需要使用这些值才能让 UIWebView 访问 url:www.mywebsite.com/check.php?id=(idhere)&code=(idhere)。

我看过其他一些主题,但到目前为止似乎没有任何帮助。

我是这种语言的新手,所以感谢您的耐心等待。

杰克布朗。

4

2 回答 2

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];
}
于 2012-12-16T05:47:32.310 回答
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];
于 2012-12-16T06:55:40.383 回答