子视图显示错误(Subview displays wrong)

2019-08-03 17:31发布

我做了一个项目,并实施了文件夹的项目 ,现在我已经建立了其显示的文件夹aboce像图片上的一个子视图。 在弹出有一个形象,我愿做这样的,如果我点击图像与整个图像的新控制器将显示。 我已经设置了所有正确的。不过,我试图改变等,这Navigationcontroller永远不会出现在所有的“层”的顶部子视图。 它出现在folderviewcontroller。 顺便说一句,在Navcontroller已设置了这个项目: https://github.com/mwaterfall/MWPhotoBrowser和弹出成立通过此: https://github.com/kgn/KGModal

因此,这里是我的代码:

-(IBAction)mehr:(id)sender {

    UIView *contentView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 280, 440)];
cubut = [UIButton buttonWithType:UIButtonTypeCustom];
                                                     [cubut addTarget:self
                                                               action:@selector(dothis:)
                                                     forControlEvents:UIControlEventTouchUpInside];
                                                     [cubut setTitle:@"Show View" forState:UIControlStateNormal];
                                                     cubut.frame = CGRectMake(5, 70, 270, 200);

                                                     [contentView addSubview:cubut];
- (IBAction)dothis:(id)sender {

    MWPhotoBrowser *browser = [[MWPhotoBrowser alloc] initWithDelegate:self];

    // Set browser options.
    browser.wantsFullScreenLayout = YES;
    browser.displayActionButton = YES;


    UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:browser];

    [self presentModalViewController:navController animated:YES];





    NSMutableArray *photos = [[NSMutableArray alloc] init];
    MWPhoto *photo;
    photo = [MWPhoto photoWithFilePath:[[NSBundle mainBundle] pathForResource:@"star" ofType:@"png"]];
    photo.caption = @"The star is soo beateful...";
    [photos addObject:photo];

    self.photos = photos;






}
- (MWPhoto *)photoBrowser:(MWPhotoBrowser *)photoBrowser photoAtIndex:(NSUInteger)index {
    if (index < _photos.count)
        return [_photos objectAtIndex:index];
    return nil;
}
- (NSUInteger)numberOfPhotosInPhotoBrowser:(MWPhotoBrowser *)photoBrowser {
    return _photos.count;
}

而图片:(按钮设置为自定义的,所以你不能看到它...它有一个像图像相同的帧)

Answer 1:

因此,这还没有完,所以我要awnser是我没有找到一个解决方案我自己的问题。



文章来源: Subview displays wrong