我发生了一个我无法弄清楚的异常。我在这里有这段代码:
newControllers = [[NSMutableArray alloc] initWithCapacity:9]; // Only allocate what we need
// Ok, add the new thumb UIs
for (int i = 0; i < 3; ++i) {
for (int j = 0; j < 3; ++j) {
// Create the view controller
ThumbViewController *newThumbVC = [[ThumbViewController alloc]
initWithNibName:@"NewThumbDisplayView" bundle:nil];
// Set the info
newThumbVC.localInfo = [newInfo objectAtIndex:(i * 3) + j];
// Place it properly
[self.scrollViewContent addSubview:newThumbVC.view];
CGRect rect = CGRectMake(8 + (j * 99), 363 + (i * 134), 106, 142);
newThumbVC.view.frame = rect;
[self.scrollViewContent bringSubviewToFront:newThumbVC.view];
[newControllers addObject:newThumbVC];
}
}
在模拟器上运行时,这非常完美。今天早上我试图在我的手机上运行它,并且在使用以下堆栈调用 CGRectMake 时出现异常(请注意,在输出窗口中根本没有打印任何内容,这使得弄清楚这更加痛苦)。
线程 1,队列:com.apple.main-thread
#0 0x35220238 in objc_exception_throw ()
#1 0x3751b788 in +[NSException raise:format:arguments:] ()
如果有人可以向我指出这里到底有什么不合适的,我将不胜感激。