iOS alipay sdk(支付宝) web(wap/网页)回调黑屏,不完美解决方案
不完美解决方案...(黑屏1秒恢复...)
原创保留:http://www.cnblogs.com/Leetvin/p/3932865.html
原因:wap回调 如果加入UINavigationController就会黑屏
#if ! __has_feature(objc_arc)
self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil] autorelease];
#else
self.viewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
#endif
self.nav=[[UINavigationController alloc]initWithRootViewController:self.viewController];
[self.window addSubview:self.nav.view];
1.在AppDelegate添加一个公用方法test
AppDelegate.m
-(void)test
{
[self performSelector:@selector(test2) withObject:nil afterDelay:1];
[self.window addSubview:self.nav.view];
}
-(void)test2
{
[self.window addSubview:self.nav.view];
}
2.回调wap那边添加一下调用AppDelegate的方法
//wap回调函数
-(void)paymentResult:(NSString *)resultd
...
else
{
//交易失败
}
}
else
{
//失败
}
AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
[appDelegate test];
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。