我正在尝试从由 Web 视图填写的表单中传递一个变量,并将其作为 NSString 存储在 Xcode 中。我有一个将变量存储为 cookie 的注册页面。然后在另一个页面中,我试图将该 cookie 作为变量返回并将其返回给 Xcode。我想我已经很接近了,但我需要一些帮助。
代码:
NSString *strURL = [NSString stringWithFormat:@"http://www.website.com/get_id.php"];
NSData *dataURL = [NSData dataWithContentsOfURL:[NSURL URLWithString:strURL]];
NSString *strResult = [[NSString alloc] initWithData:dataURL encoding:NSUTF8StringEncoding];
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"Your ID"
message:strResult
delegate:self
cancelButtonTitle:@"Dismiss"
otherButtonTitles:nil, nil];
[alert show];
return;
PHP:
<?php
$result = action($a, $b);
echo $result;
function action($a, $b){
$your_email = $_COOKIE["your_email"];
return $your_email;
}
?>
非常感谢您的时间和帮助!