gpt4 book ai didi

ios - PresentViewController 在 iOS 6 上崩溃

转载 作者:行者123 更新时间:2023-11-29 03:49:57 25 4
gpt4 key购买 nike

我的应用程序出现了奇怪的崩溃问题。一旦我从 A ViewController 进入 B ViewController,它就会崩溃(不是每次,只发生一次)。这是代码

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{
NSUInteger row = [indexPath row];
NSUInteger section = [indexPath section];

if( section == 0 && row == 0 && self.uidString && self.profileDic)
{
BViewController *bviewcontroller = [[BViewController alloc] init];
[bviewcontroller setProfileDic:self.profileDic];
bviewcontroller.delegate = self;
bviewcontroller.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:bviewcontroller animated:YES];
[bviewcontroller release];
}
}

崩溃日志是

Date/Time:       2013-06-18 10:00:39.720 +0800
OS Version: iOS 6.1.4 (10B350)
Report Version: 104

Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Crashed Thread: 0

Last Exception Backtrace:
0 CoreFoundation 0x31d3c3e2 __exceptionPreprocess + 158
1 libobjc.A.dylib 0x39a3795e objc_exception_throw + 26
2 CoreFoundation 0x31d3c298 +[NSException raise:format:arguments:] + 96
3 Foundation 0x32612f9e -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 86
4 UIKit 0x33c37754 -[UIWindowController transition:fromViewController:toViewController:target:didEndSelector:] + 172
5 UIKit 0x33c36fa6 -[UIViewController presentViewController:withTransition:completion:] + 3394
6 UIKit 0x33d58d9e -[UIViewController presentModalViewController:animated:] + 26

我寻找答案,这里的一些帖子说这是因为 UIViewController 的“presentViewController”方法在 iOS 4.3 上不可用,解决方案是将“presentViewController”更改为“presentModalViewController”。但这正是我的代码所做的。那么有人知道会发生什么吗?提前致谢。

最佳答案

您可能需要将呈现的 View Controller 保留在某处(例如在 iVar 中)。我猜它在出现之前就被释放了。

关于ios - PresentViewController 在 iOS 6 上崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17170716/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com