- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个向上滑动的 ViewController。当您单击“保存”时,它会向服务器发送请求。请求完成后,它会关闭 ViewController。我将 NSURLConnection 切换为使用异步和 block (https://github.com/rickerbh/NSURLConnection-Blocks)。现在关闭 ViewController 会抛出“线程 2:程序收到信号:EXC_BAD_ACCESS”。如果重要的话,我正在使用 ARC。
- (IBAction) savePressed
{
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:@"http://api.com/items/create"]];
//NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
[NSURLConnection asyncRequest:request success:^(NSData *data, NSURLResponse *response) {
[self close];
} failure:^(NSData *data, NSError *error) {
[self close];
}];
}
- (void) close
{
[self dismissViewControllerAnimated:YES completion:nil];
}
这是日志
2012-10-24 10:32:43.780 Prayrbox[22268:1703] bool _WebTryThreadLock(bool), 0x1f21fd90: Tried to obtain the web lock from a thread other than the main thread or the web thread. This may be a result of calling to UIKit from a secondary thread. Crashing now...
1 0x347dc927 WebThreadLock
2 0x36718615 <redacted>
3 0x366d0a85 <redacted>
4 0x3678d789 <redacted>
5 0x366c0637 <redacted>
6 0x366d50e7 <redacted>
7 0x368c1f11 <redacted>
8 0x366d4969 <redacted>
9 0x36744745 <redacted>
10 0x366907ad <redacted>
11 0x7ef71 -[ComposeViewController close]
12 0x7eec5 __36-[ComposeViewController savePressed]_block_invoke_0
13 0x82d8f __56+[NSURLConnection(Blocks) asyncRequest:success:failure:]_block_invoke_0
14 0x37e8811f <redacted>
15 0x37e96259 <redacted>
16 0x37e963b9 <redacted>
17 0x37b30a11 <redacted>
18 0x37b308a4 start_wqthread
[Switching to process 10755 thread 0x2a03]
[Switching to process 10755 thread 0x2a03]
[unknown](gdb)
我已经花了 2 个小时来寻求这方面的帮助。如果有人知道什么可以帮助,请说出来! :)
最佳答案
乍一看,我同意上面的评论,即在关闭 View 时您可能走错了线程。
UI 的东西应该在 Main 上完成,所以要强制执行,你可以这样做:
-(void) close {
if([NSThread isMainThread]) {
[self dismissViewControllerAnimated:YES completion:nil];
}
else {
[self performSelectorOnMainThread:@selector(close)
withObject:nil
waitUntilDone:YES];
}
}
而不是从你的 block 中执行 performSelectorOnMainThread,这将确保无论何时调用它,你都会在主线程上。
关于iphone - 调用 dismissViewControllerAnimated 时的 exc_bad_access,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13054127/
我的项目中有 Simple popOver Controller 。我可以使用带有以下代码的操作按钮将其关闭。 [[self presentingViewController] dismissView
我有以下代码将调用模态视图。我在呈现 View Controller 时工作正常,但当我关闭它时,它崩溃了 _surveySummaryTableViewController = [[UITableV
我有一种方法可以从我的 TableView 发送电子邮件。 所以其中一个单元格是“联系我们”单元格,每当它被点击时,我都会使用 MFMailComposeViewController 进入邮件 Vie
我正在使用 QuickDialog 推送登录表单。除了无法关闭 View Controller 外,一切正常。代码如下: - (void)onLogin:(QButtonElement *)butto
我在使用 dismissViewControllerAnimated 时遇到了一些问题,我无法让它执行特定的转换。 我有一个 View Controller (主页),我正在使用模式打开另一个 VC(
我正在开发一个 iPad 应用程序,该应用程序具有一个登录 Controller ,该登录 Controller 可以连接到一个 View Controller 中。登录 Controller 是这样
dismissViewController 不会一直调用它的完成处理程序。我正在展示第一个 View ,当我关闭它时,它会调用完成处理程序,我将在其中展示 2 个 View 。关闭第二个 View 时
我有一个 UIViewController A,此时我的内存为 104 Mb。在 A 中,我通常像这样打开 UIVIewController B: UIViewController *b = [[UI
我正在使用 SVWebViewController .当我在这里展示 View Controller 时 SVModalWebViewController *webViewController = [
我呈现模态视图,它是一个导航 Controller : UINavigationController *nvc = [[UINavigationController alloc] initWithR
我在 IOS6 上使用 Storyboard。我正在尝试返回到之前的 View Controller ,但它不起作用。 我在这里自定义了我的后退按钮。 UIButton *btnBack = [UIB
我试图用自定义动画调用 dismissViewControllerAnimated,但它似乎不起作用。 当我像这样呈现 View Controller 时: cameraUI = UI
我一直在尝试找出如何增加 dismissViewControllerAnimated(true, completion: nil) 的持续时间,但似乎无法在 Apples documentation
我正在使用 Storyboard实现一个 iOS 应用程序,其中一个按钮调用 dismissViewControllerAnimated 以从 View Controller B 返回到前一个 Vie
用户点击按钮调出带有键盘的 View Controller 。在这种情况下,键盘会随着 View Controller 向上滑动,所以看起来键盘是固定在 View Controller 中的。 完成后
我有一个方法 - (void) swipeRight { [self dismissViewControllerAnimated:YES completion:nil]; } 当用户向右滑动时,我用它
我尝试了一些没有真正起作用的东西(更多我想到的东西)。 当使用 [self dismissViewControllerAnimated:YES completion:nil]; 我需要它来运行我要返回
我已经从 apple 下载了 PageControl 示例代码。这是一个带有 UIPageControl 的项目。我对其进行了更改,以便 UIScrollView 具有不同的 View 。对于我想添加
所以....我有一个 View Controller ,当我按下一个按钮时,会出现另一个 View Controller : - (IBAction)searchButtonPressed:(id)s
这是我的应用程序设计。我有 mainController,它显示 secondViewController。现在,我想关闭 secondViewController,然后在 mainControlle
我是一名优秀的程序员,十分优秀!