我的UI包含一个小的tableview,一个zxing窗口,提交按钮。 表包含zxing扫描的名称。表格已滑动以删除。 点击提交alertView会显示询问是否同步用户。
上述两项行动都很缓慢。 Alertview显示,不要点击15secs。 滑动即可删除相同的方式。滑动后需要10秒才能滑动。 这发生在ios6 iPad air上。但它在ios7 iPad mini中运行顺畅。
这是添加zxing窗口的代码。
widController =
[[ZXingWidgetController alloc] initWithDelegate:self showCancel:NO OneDMode:NO showLicense:NO];
NSMutableSet *readers = [[NSMutableSet alloc ] init];
MultiFormatReader* reader = [[MultiFormatReader alloc] init];
[readers addObject:reader];
widController.readers = readers;
NSBundle *mainBundle = [NSBundle mainBundle];
widController.soundToPlay =
[NSURL fileURLWithPath:[mainBundle pathForResource:@"beep-beep" ofType:@"aiff"] isDirectory:NO];
// widController.view.frame = CGRectMake(95, 245, 338, 338);
widController.view.frame = CGRectMake(45, 155, 338, 338);
[self.view_box addSubview:widController.view];