我开发了一个 IOS 框架(目标 C)并希望将其集成到 Kony 项目中。要调用的框架函数将显示一个 UIView。
此功能在 Kony 项目中用于加载 UI:
- (void)viewDidLoad {
[super viewDidLoad];
GlobalVariables = [GlobalVars sharedInstance];
CameraBioselfie *cam;
cam =[[CameraBioselfie alloc] init];
[self presentViewController:cam animated:YES completion:nil];
[self.view addSubview:[cam window]];
dispatch_group_t group = dispatch_group_create(); dispatch_group_async(group,dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^ {
while (GlobalVariables.response.length==0 && GlobalVariables.error.length==0){
}
if(GlobalVariables.response.length==0){
self.result =GlobalVariables.error;
}
else if([GlobalVariables.response containsString:GlobalVariables.username]){
self.result = @"Recognized";
}
else{
self.result = GlobalVariables.response;
}
NSArray *status = @[self.result];
[self.callbackfunction executeWithArguments:status];
dispatch_sync(dispatch_get_main_queue(), ^{
[self dismissViewControllerAnimated:YES completion:nil];
});
});
}
当它到达这一行时:
[self.view addSubview:[cam window]];
我收到以下错误:
在从主线程访问引擎后,此应用程序正在从后台线程修改自动布局引擎。这可能导致引擎损坏和奇怪的崩溃。
请注意,如果框架集成在 Xcode 目标 c 项目中并以相同的方式调用,我没有这个问题