English 中文(简体)
Back子在滚动桌旁边挖掘时坠毁
原标题:App crashes when Back button tapped while scrolling table view

我在航海中提出了一种示意表,以后纽。 背纽州向模式观点代表发出信息,以否定模式观点。 如果我放弃表上的观点,然后把 Back子放在航道上,而表上的观点仍在滚动之中,则该电文中的 app:

*** -[UILayoutContainerView setUseFastMode:]: message sent to deallocated instance 0xef74650

IPO 0xef74650 我这样做:

(int) $1 = 251086416 [no Objective-C description available]

此前曾有过这样的经历? 工作或固定工作是什么?

最佳回答

我认为,这是第5.1节中的一种 b,是在对目前正在发展的一种模式进行开除时发生的。 我正在从用户那里收到报告说,我的 app正在坠毁,在我调查时,我有同样的错误。

我创建了一个新项目,其代码/一览表最低,并能够照搬这一坠毁事件。 我迄今发现的唯一工作是,在放弃一种模式时,可以消除悲观。 我先向 Apple果提交了ug报告。

问题回答

我也有一个类似的问题,如果该表仍在 s,我则会错失,我触发了表格上出现的一种模式。 我的坠机被扔进,ForRowAtIndexPath,指数Path被分配。

我通过停止在<条码>上的滚动确定。 方法:

- (void) viewWillDisappear:(BOOL)animated {
    [self.tableView setContentOffset:self.tableView.contentOffset animated:NO];
}

希望这将有助于研究相关问题的人!

第5类是“FrecView”的“快门槛值”类。 如果你对正在与模式观察控制器被开除的同一跑道中形成的滚动观点进行分辨率,就会出现这种丑恶。

    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0xa0000008
Crashed Thread:  0

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   libobjc.A.dylib                 0x34bdef78 objc_msgSend + 16
1   UIKit                           0x35309f9e -[UIView(FastModeAdditions) _setContainerLayoutViewForFastMode:] + 98
2   UIKit                           0x351701cc -[UIView dealloc] + 568
3   UIKit                           0x3545a39e -[UIDropShadowView dealloc] + 86
4   libobjc.A.dylib                 0x34be016e _objc_rootRelease + 30
5   CoreFoundation                  0x32b882e0 CFRelease + 88

我们发现的最好工作是:履行以下职责:解雇。 这迫使后来停职,坠毁事件不再发生。

这一点在6号行政命令中没有发生。

查阅<代码>UseFastMode:,以确保你不释放你试图在以后获得的东西。

[someObject release];

我在把一个 but子拖在路程内,如果其桌上仍在滚动,就将错失。 这样做是不正确的:在将解职守则移至呈递观点的控制器后,把该守则称作代表办法的一部分,坠毁不再发生。

这对我的工作是:

NSIndexPath *myIP = [NSIndexPath indexPathForRow:0 inSection:0]
[self.tblChildProducts scrollToRowAtIndexPath:myIP atScrollPosition:UITableViewScrollPositionTop animated:NO]
[self dismissModalViewControllerAnimated:YES]

<https://stackoverflow.com/questions/10146660/app-crashes-time-back-button-taped-while-scrolling-table-view#comment13948054_10307268>@Slee May 24 12 at 11:18





相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签