SDK (2.2.7) をインストールし、すべてのフレームワークを xCode (4.6.2) プロジェクトに含めました。コードをスキャンしようとすると、クラッシュします。
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
スキャン ビューのゲッター
- (ScanditSDKBarcodePicker *)scanPicker
{
if (!_scanPicker)
{
_scanPicker = [[ScanditSDKBarcodePicker alloc] initWithAppKey: SCANDIT_APP_KEY];
UIBarButtonItem *guestButton = [[UIBarButtonItem alloc] initWithTitle:@"List" style:UIBarButtonItemStylePlain target:self action:@selector(choseFromList:)];
_scanPicker.navigationItem.rightBarButtonItem = guestButton;
UIBarButtonItem *cancelButton = [[UIBarButtonItem alloc] initWithTitle:@"cancel" style:UIBarButtonItemStylePlain target:self action:@selector(cancelPicker:)];
_scanPicker.navigationItem.leftBarButtonItem = cancelButton;
_scanPicker.overlayController.delegate = self;
[_scanPicker startScanning];
}
return _scanPicker;
}
それを表すコード
- (void)presentScanditViewController
{
UINavigationController *navi = [[UINavigationController alloc] initWithRootViewController:self.scanPicker];
[self presentViewController:navi animated:YES completion:nil];
}
アプリキーも確認しましたが、同じ問題を抱えている人はいますか??