无法将UIImageView添加到ios Cordova中的MainViewController中?

时间:2017-02-11 07:58:16

标签: ios objective-c cordova uiwebview uiimageview

Iam尝试在UIImageView之上添加MainViewController,当我运行项目时UIImageView不存在。

如果我添加普通UIVIew,我可以看到新视图,但不能看到UIButton或UIImageView

我已将此代码添加到init方法,以将UIImageView置于最前面但不能正常工作

- (id)init
{
    self = [super init];
    if (self) {
        [self.webView bringSubviewToFront:self.moxiView];
        // Uncomment to override the CDVCommandDelegateImpl used
        // _commandDelegate = [[MainCommandDelegate alloc] initWithViewController:self];
        // Uncomment to override the CDVCommandQueue used
        // _commandQueue = [[MainCommandQueue alloc] initWithViewController:self];
    }
    return self;
}

查看附加的屏幕截图enter image description here

如何在cordova" MainViewController"上添加UIImageView?文件?

0 个答案:

没有答案