ユーザーIDとコードをNSUSERDEFAULTSに保存するアプリケーションがあります。UIWebViewがURLにアクセスするためにこれらの値を使用する必要があります:www.mywebsite.com/check.php?id=(idhere)&code=(idhere)。
私は他のいくつかのトピックを見てきましたが、これまでのところ何も助けになっていないようです。
私はこの言語に慣れていないので、今しばらくお待ちください。
ジャック・ブラウン。
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
NSString *userId= [prefs stringForKey:@"userIdkey"];
NSString *code= [prefs stringForKey:@"codeKey"];
そしてあなたのURL文字列は
NSString *urlStr = [NSString stringWithFormat:@"http://www.mywebsite.com/check.php?id=%@&code=%@",userId,code];
最も単純な形式:
- (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];
}