在ViewController
我有一个名为registor new users的注册按钮。并且输入userid的文本字段,getstarted按钮进入ViewController1
。如果用户单击注册按钮UIWebview从网站链接加载注册URL。注册邮件后,用userid发送给用户。注册后我该怎么办?我应该重定向到ViewController页面以获取getstarted按钮。我应该在UIWebview页面中使用导航控制器。有时苹果会拒绝应用程序,这就是为什么?
代码:
webview=[[UIWebView alloc]initWithFrame:CGRectMake(0, 0, 320,568)];
NSString *url=@"http://myserver.net/projects/mobile/registration.php";
NSURL *nsurl=[NSURL URLWithString:url];
NSURLRequest *nsrequest=[NSURLRequest requestWithURL:nsurl];
[webview loadRequest:nsrequest];
[self.view addSubview:webview];
答案 0 :(得分:0)
Apple不允许它。即使Google商店也拒绝此类应用。在safari中使用API或打开注册页面:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.signuPpaage.com"]];
但在这种情况下,用户必须在注册后再次手动重新启动您的应用。