gpt4 book ai didi

ios - 将 UIViewController 作为 rootView Controller 的 subview Controller 的模态视图呈现的问题

转载 作者:行者123 更新时间:2023-11-29 04:59:03 25 4
gpt4 key购买 nike

我有一个父 View Controller ,它是 UIWindow 的 rootViewController。这个 UIViewController 有两个 subview (添加了 View Controller )。当我点击右侧 subview Controller 中的按钮时,它应该打开一个模态视图。当我尝试通过从右侧 View 使用 [selfpresentModalView:vc] 来执行此操作时,它会折叠整个 UI。因此,我更改了代码,即我通过 AppDelegate 从parentViewController 呈现模态视图。因为appdelegate有parentView的实例。当我喜欢这个模态视图时,它会毫无问题地出现。

我的问题是,这是正确的方法吗?是否有关于呈现模态视图、该做什么和不该做什么的明确程序/文档?

我面临的另一个问题是,当我尝试在第一个模态视图上呈现另一个模态视图时,它不起作用。

请澄清一下。

编辑:添加了代码示例来模拟问题。 RootViewController 已添加到窗口中。 RightViewController是 Root View Controller 的 subview 。当我单击右 View Controller 上的按钮时,它将把模态视图 Controller 呈现为模态视图。这就是问题所在。模态视图未出现适本地。我希望这可以帮助你。

--提前致谢。 @杜莱

#import <UIKit/UIKit.h>

@class RightViewController;

@interface RootViewController : UIViewController {
UIView *bgView;
RightViewController *rightView;
}

@end

#import "RootViewController.h"
#import "RightViewController.h"

@implementation RootViewController
/*
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
*/

- (void) loadView
{
bgView = [[UIView alloc] initWithFrame:[UIApplication sharedApplication].statusBarFrame];

rightView = [[RightViewController alloc] init];
[bgView addSubview:rightView.view];

self.view = bgView;
}

- (void)dealloc
{
[super dealloc];
}

- (void)didReceiveMemoryWarning
{
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];

// Release any cached data, images, etc that aren't in use.
}

#pragma mark - View lifecycle

/*
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView
{
}
*/

/*
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad
{
[super viewDidLoad];
}
*/

- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return YES;
}

@end

// RightViewController.h
// ModalViewTester
//
//

#import <UIKit/UIKit.h>
#import "ModalViewController.h"

@interface RightViewController : UIViewController <ModalViewDelegate>{
UIView *rightView;
UIButton *button;
}

- (void) showModalView;

@end




#import "RightViewController.h"

@implementation RightViewController
/*
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
*/
- (void) loadView
{
rightView = [[UIView alloc] initWithFrame:CGRectMake(320, 40, 250, 250)];
rightView.backgroundColor = [UIColor yellowColor];
self.view = rightView;

button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = CGRectMake(20, 20, 100, 30);
[button setTitle:@"Modal" forState:UIControlStateNormal];
[button addTarget:self action:@selector(showModalView) forControlEvents:UIControlEventTouchUpInside];
[rightView addSubview:button];

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(40, 50, 100, 50)];
label.text = @"Right View";
label.textColor = [UIColor blackColor];
label.font = [UIFont fontWithName:@"Helvetica-Bold" size:14.0f];
[rightView addSubview:label];

self.view = rightView;
}

- (void) showModalView
{
ModalViewController *mc = [[ModalViewController alloc] init];
self.modalPresentationStyle = UIModalPresentationFullScreen;
self.modalTransitionStyle = UIModalTransitionStylePartialCurl;
[self presentModalViewController:mc animated:YES];
[mc release];
}

- (void) closeView:(NSDictionary *)dict
{
[self dismissModalViewControllerAnimated:YES];
}

- (void)dealloc
{
[super dealloc];
}

- (void)didReceiveMemoryWarning
{
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];

// Release any cached data, images, etc that aren't in use.
}

#pragma mark - View lifecycle

/*
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView
{
}
*/

/*
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad
{
[super viewDidLoad];
}
*/

- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return YES;
}

@end

#import <UIKit/UIKit.h>

@protocol ModalViewDelegate

-(void) closeView:(NSDictionary *) dict;

@end

@interface ModalViewController : UIViewController {
UIView *modalView;
UIButton *cancelButton;
id <ModalViewDelegate> delegate;
}

- (void) closeView:(id) sender;

@end

#import "ModalViewController.h"


@implementation ModalViewController

/*
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
*/

- (void) loadView
{
NSLog(@"Inside ModalViewController - loadView method");
modalView = [[UIView alloc] initWithFrame:[UIApplication sharedApplication].statusBarFrame];
modalView.backgroundColor = [UIColor blueColor];

cancelButton = [[UIButton alloc] initWithFrame:CGRectMake(150, 50, 70, 40)];
[cancelButton setTitle:@"Cancel" forState:UIControlStateNormal];
[cancelButton addTarget:self action:@selector(closeView:) forControlEvents:UIControlEventTouchUpInside];
[modalView addSubview:cancelButton];

self.view = modalView;
}

- (void) closeView:(id) sender
{
[delegate closeView:nil];
}

- (void)dealloc
{
[super dealloc];
}

- (void)didReceiveMemoryWarning
{
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];

// Release any cached data, images, etc that aren't in use.
}

#pragma mark - View lifecycle

/*
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView
{
}
*/

/*
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad
{
[super viewDidLoad];
}
*/

- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return YES;
}

@end

最佳答案

如果没有任何代码,很难真正理解您的问题,但如果您正在寻找文档,我认为这就是您需要查看的内容:

http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/ModalViewControllers/ModalViewControllers.html

关于ios - 将 UIViewController 作为 rootView Controller 的 subview Controller 的模态视图呈现的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7359059/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com