我正在尝试使用KTPhotoBrowser来使用它的缩略图视图功能。我在推送从 KTThumbsViewController 派生的 viewController 时遇到了一些困难。看来navigationController只能推送到UIViewController:
- (void)showSDWebImageSample
{
KTThumbsViewController *newController = [[KTThumbsViewController alloc] init];
[self.navigationController pushViewController:newController animated:YES];
}
KTThumbsViewController 的头文件包括:
@interface KTThumbsViewController : UIViewController <KTThumbsViewDataSource>
我从提供的示例中获取了代码。但它给了我以下运行时错误:
-[KTThumbsViewController copyWithZone:]:无法识别的选择器发送到实例 0x8877130 2012-10-30 14:52:03.004 myCases_MD[36941:c07] *由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:'-[KTThumbsViewController copyWithZone:]:无法识别的选择器发送到实例 0x8877130'
有人可以帮我吗?
干杯,