MVC控制器的方法及对应视图怎么找

MVC控制器的方法及对应视图怎么找,第1张

ASPNET MVC默认会到Views下对应的控制器名的文件夹下寻找和这个动作方法同名的视图(如果你指定了视图名则会按照你指定的视图名查找)。但是这中间是如何做到的呢?其实多亏ASPNET MVC的灵活性强的特点,当你返回View之后,控制器会通过一组视图引擎去查找对应的页面,如果其中一个视图引擎返回了符合的视图则结束查找开始渲染视图。

视图引擎,它要能够根据要求返回符合的视图(实现Iview接口),而视图引擎需要实现IViewEngine接口,IViewEngine接口代码如下所示:

1     public interface IViewEngine2     {3         ViewEngineResult FindPartialView(ControllerContext controllerContext, string partialViewName, bool useCache);4         ViewEngineResult FindView(ControllerContext controllerContext, string viewName, string masterName, bool useCache);5         void ReleaseView(ControllerContext controllerContext, IView view);6 }

        在开发一个复杂页面时,我们总是希望能够降低页面中控件的耦合度或者让单独的控制器去管理某个稍微复杂些的控件,即使用一个类似容器的控制器来管理页面中控件的扩及。在最近的storyboard开发中,使用到了一个新的方便的控件——container view,写了一些简单的demo,来测试一下这个控件并总结一下简单的用法。

大致的表述是在这个container view会建立一个和子控制器连接的segue,我们可以在父控制器中放入container view控件,每一个container view会自动创建一个关联的controller。controller中view的尺寸会随着container view的尺寸变化。

tips:控制器view的背景色优先级是大于container view的背景色。

     界面创建完毕以后,最主要的就是在父控制中能够获取到子控制器,来进行一些 *** 作。刚开始试的时候发现container view关联到控制器中只是一个uiview的类。获取对应的控制器比较麻烦。但是View和Controller 是通过segue来连接的。于是就考虑使用segue的代理方法方法来获取。

首先在父控制器中声明两个控制器 leftVC 和rightVC,然后在

这个方法是优先于父控制器viewdidload执行的。所以获取到子控制器后可以在viewdidload中对子控制器进行 *** 作。

简单的记录一下container view的用法,以后再遇到新的用法会更新,也欢迎大家一起讨论怎么使用。

一、引言

UIPageViewController是iOS中少见的动画视图控制器之一,通过它既可以创建类似UIScrollView与UIPageControl结合的滚屏视图,也可以创建类似图书效果的炫酷翻页视图。

UIPageViewController在iOS 5 SDK中首次引入,它使得开发者可以使用这个ViewController创建分页视图。在iOS 6中,这个类有了更新,支持滚动过渡效果。使用Page View,用户可以方便的通过手势在多个页面之间导航。UIPageViewController并不仅仅用于引导页,很多游戏,例如:愤怒的小鸟,就是用Page View来展示关卡选择的页面,还有有关书籍的应用,用这个类来显示书的页面。

UIPageViewController是个高度可配置的类,你可以进行如下配置:

分页的方向——水平或垂直 翻页的样式——书卷翻页或者滑动翻页 书脊位置——只有书卷翻页样式有效 页面间距——只有滑动翻页样式有效,用来定义页面间距(inter-page spacing)

UIPageViewController类似一个视图容器,其中每个具体的视图由各自的ViewController进行维护管理,UIPageViewController只进行协调与动画布置。下图可以很好的展现出UIPageViewControlelr的使用结构:

上图中,UIPageViewControllerDataSource协议为UIPageViewController提供数据支持,DataSource协议提供的数据来自各个ViewContoller自行维护,UIPageViewControllerDelegate中的回调可以对翻页动作,屏幕旋转动作等进行监听。UIPageViewController把从DataSource中获取到的视图数据渲染给View用于当前视图控制器的展示。

为了演示,我们会一起创建一个简单的app。当然,我们不会演示所有的UIPageViewController的配置细节,我们会演示到使用滑动翻页样式来创建一个引导页。不过别担心,有了对UIPageViewController的基本理解,我相信你能够去探索其他的特性。

开始吧!

二、创建一个UIPageViewController

首先新建一个类作为翻页视图控制器中具体每一页视图的控制器,使其继承于UIViewController:

ModelViewControllerh

#import

@interface ModelViewController : UIViewController

+(ModelViewController )creatWithIndex:(int)index;

@property(nonatomic,strong)UILabel indexLabel;

@end

ModelViewControllerm

#import "ModelViewControllerh"

@interface ModelViewController ()

@end

@implementation ModelViewController

+(ModelViewController )creatWithIndex:(int)index{

ModelViewController con = [[ModelViewController alloc]init];

conindexLabel = [[UILabel alloc]initWithFrame:CGRectMake(110, 200, 100, 30)];

conindexLabeltext = [NSString stringWithFormat:@"第%d页",index];

[conview addSubview:conindexLabel];

return con;

}

- (void)viewDidLoad {

[super viewDidLoad];

// Do any additional setup after loading the view

selfviewbackgroundColor = [UIColor redColor];

}

@end

在工程模板自带的ViewControllerm文件中实现如下代码:

#import "ViewControllerh"

#import "ModelViewControllerh"

//遵守协议

@interface ViewController ()

{

//翻页视图控制器对象

UIPageViewController _pageViewControl;

//数据源数组

NSMutableArray _dataArray;

}

@end

@implementation ViewController

- (void)viewDidLoad {

[super viewDidLoad];

//进行初始化

_pageViewControl = [[UIPageViewController alloc]initWithTransitionStyle:UIPageViewControllerTransitionStyleScroll navigationOrientation:UIPageViewControllerNavigationOrientationHorizontal options:@{UIPageViewControllerOptionSpineLocationKey:@0,UIPageViewControllerOptionInterPageSpacingKey:@10}];

selfviewbackgroundColor = [UIColor greenColor];

//设置翻页视图的尺寸

_pageViewControlviewbounds=selfviewbounds;

//设置数据源与代理

_pageViewControldataSource=self;

_pageViewControldelegate=self;

//创建初始界面

ModelViewController model = [ModelViewController creatWithIndex:1];

//设置初始界面

[_pageViewControl setViewControllers:@[model] direction:UIPageViewControllerNavigationDirectionReverse animated:YES completion:nil];

//设置是否双面展示

_pageViewControldoubleSided = NO;

_dataArray = [[NSMutableArray alloc]init];

[_dataArray addObject:model];

[selfview addSubview:_pageViewControlview];

}

//翻页控制器进行向前翻页动作 这个数据源方法返回的视图控制器为要显示视图的视图控制器

- (nullable UIViewController )pageViewController:(UIPageViewController )pageViewController viewControllerBeforeViewController:(UIViewController )viewController{

int index = (int)[_dataArray indexOfObject:viewController];

if (index==0) {

return nil;

}else{

return _dataArray[index-1];

}

}

//翻页控制器进行向后翻页动作 这个数据源方法返回的视图控制器为要显示视图的视图控制器

- (nullable UIViewController )pageViewController:(UIPageViewController )pageViewController viewControllerAfterViewController:(UIViewController )viewController{

int index = (int)[_dataArray indexOfObject:viewController];

if (index==9) {

return nil;

}else{

if (_dataArraycount-1>=(index+1)) {

return _dataArray[index+1];

}else{

ModelViewController model = [ModelViewController creatWithIndex:index+2];

[_dataArray addObject:model];

return model;

}

}

}

//屏幕旋转触发的代理方法

- (UIPageViewControllerSpineLocation) pageViewController:(UIPageViewController )pageViewController spineLocationForInterfaceOrientation:(UIInterfaceOrientation)orientation{

return UIPageViewControllerSpineLocationMin;

}

//设置分页控制器的分页数

- (NSInteger)presentationCountForPageViewController:(UIPageViewController )pageViewController {

return 10;

}

//设置初始的分页点

- (NSInteger)presentationIndexForPageViewController:(UIPageViewController )pageViewController{

return 0;

}

@end

上面创建了最简单的翻页视图控制器示例,效果如下图:

三、UIPageViewController中方法使用解析

//创建翻页视图控制器对象

- (instancetype)initWithTransitionStyle:(UIPageViewControllerTransitionStyle)style navigationOrientation:(UIPageViewControllerNavigationOrientation)navigationOrientation options:(nullable NSDictionary)options;

上面方法用于创建视图控制器对象,其中UIPageViewControllerTransitionStyle参数设置翻页控制器的风格,枚举如下:

typedef NS_ENUM(NSInteger, UIPageViewControllerTransitionStyle) {

UIPageViewControllerTransitionStylePageCurl = 0, //类似于书本翻页效果

UIPageViewControllerTransitionStyleScroll = 1 // 类似于ScrollView的滑动效果

};

如果设置为UIPageViewControllerTransitionStyleCurl,翻页效果如下图所示:

上面初始化方法中的UIPageViewControllerNavigationOrientation属性设置翻页的方向,枚举如下:

typedef NS_ENUM(NSInteger, UIPageViewControllerNavigationOrientation) {

UIPageViewControllerNavigationOrientationHorizontal = 0,//水平翻页

UIPageViewControllerNavigationOrientationVertical = 1//竖直翻页

};

options参数用于设置翻页视图控制器的配置字典,其可以设置的配置键值如下:

//这个键需要设置为UIPageViewControllerOptionSpineLocationKey枚举值对应的`NSNumber对象 设置翻页控制器的书轴 后面会介绍

NSString const UIPageViewControllerOptionSpineLocationKey;

//这个键需要设置为NSNumber类型 设置每页视图的间距 用于滚动视图风格的

NSString const UIPageViewControllerOptionInterPageSpacingKey;

下面是UIPageViewController的一些常用属性与方法:

//设置数据源

@property (nullable, nonatomic, weak) iddelegate;

//设置代理

@property (nullable, nonatomic, weak) iddataSource;

//获取翻页风格

@property (nonatomic, readonly) UIPageViewControllerTransitionStyle transitionStyle;

//获取翻页方向

@property (nonatomic, readonly) UIPageViewControllerNavigationOrientation navigationOrientation;

//获取书轴类型

@property (nonatomic, readonly) UIPageViewControllerSpineLocation spineLocation;

//设置是否双面显示

@property (nonatomic, getter=isDoubleSided) BOOL doubleSided;

//设置要显示的视图控制器

- (void)setViewControllers:(nullable NSArray)viewControllers direction:(UIPageViewControllerNavigationDirection)direction animated:(BOOL)animated completion:(void (^ __nullable)(BOOL finished))completion;

上面只有spineLocation属性有些难于理解,其枚举如下:

typedef NS_ENUM(NSInteger, UIPageViewControllerSpineLocation) {

//对于SCrollView类型的滑动效果 没有书轴 会返回下面这个枚举值

UIPageViewControllerSpineLocationNone = 0,

//以左边或者上边为轴进行翻转 界面同一时间只显示一个View

UIPageViewControllerSpineLocationMin = 1,

//以中间为轴进行翻转 界面同时可以显示两个View

UIPageViewControllerSpineLocationMid = 2,

//以下边或者右边为轴进行翻转 界面同一时间只显示一个View

UIPageViewControllerSpineLocationMax = 3

};

将上面的示例代码修改几个地方如下:

- (void)viewDidLoad {

[super viewDidLoad];

// Do any additional setup after loading the view, typically from a nib

_pageViewControl = [[UIPageViewController alloc]initWithTransitionStyle:UIPageViewControllerTransitionStylePageCurl navigationOrientation:UIPageViewControllerNavigationOrientationVertical options:@{UIPageViewControllerOptionSpineLocationKey:@2,UIPageViewControllerOptionInterPageSpacingKey:@10}];

selfviewbackgroundColor = [UIColor greenColor];

_pageViewControlviewbounds=selfviewbounds;

_pageViewControldataSource=self;

_pageViewControldelegate=self;

ModelViewController model = [ModelViewController creatWithIndex:1];

ModelViewController model2 = [ModelViewController creatWithIndex:2];

[_pageViewControl setViewControllers:@[model,model2] direction:UIPageViewControllerNavigationDirectionReverse animated:YES completion:nil];

_pageViewControldoubleSided = YES;

_dataArray = [[NSMutableArray alloc]init];

[_dataArray addObject:model];

[selfview addSubview:_pageViewControlview];

}

- (UIPageViewControllerSpineLocation) pageViewController:(UIPageViewController )pageViewController spineLocationForInterfaceOrientation:(UIInterfaceOrientation)orientation{

return UIPageViewControllerSpineLocationMid;

}

运行效果如下图所示:

四、UIPageViewControllerDataSource中方法解析

//向前翻页展示的ViewController

- (nullable UIViewController )pageViewController:(UIPageViewController )pageViewController viewControllerBeforeViewController:(UIViewController )viewController;

//向后翻页展示的ViewController

- (nullable UIViewController )pageViewController:(UIPageViewController )pageViewController viewControllerAfterViewController:(UIViewController )viewController;

//设置分页控制器的分页点数

- (NSInteger)presentationCountForPageViewController:(UIPageViewController )pageViewController NS_AVAILABLE_IOS(6_0);

//设置当前分页控制器所高亮的点

- (NSInteger)presentationIndexForPageViewController:(UIPageViewController )pageViewController NS_AVAILABLE_IOS(6_0);

五、UIPageViewControllerDelegate中方法解析

//翻页视图控制器将要翻页时执行的方法

- (void)pageViewController:(UIPageViewController )pageViewController willTransitionToViewControllers:(NSArray)pendingViewControllers NS_AVAILABLE_IOS(6_0);

//翻页动画执行完成后回调的方法

- (void)pageViewController:(UIPageViewController )pageViewController didFinishAnimating:(BOOL)finished previousViewControllers:(NSArray)previousViewControllers transitionCompleted:(BOOL)completed;

//屏幕防线改变时回到的方法,可以通过返回值重设书轴类型枚举

- (UIPageViewControllerSpineLocation)pageViewController:(UIPageViewController )pageViewController spineLocationForInterfaceOrientation:(UIInterfaceOrientation)orientation;

一般来说,获取当前活动中的某一个视图还是很方便的,我们在使用onClick函数的时候经常会见到这样的用法:

我们注意到,make函数的第一个参数是v,这可以是当前布局的任意一个View,Snackbar会使用这个View来找到最外层的布局从而展示Snackbar。但是我们有的时候并不是使用onClick函数来调用Snackbar。例如我们会在onOptionsItemSelected函数中使用Snackbar。此时,我们可以借用下列方法获取View视图:

getWindow()getDecorView()findViewById(AndroidRidcontent)

就上述例子来说,可以修改为这样:

就是这样啦,蟹蟹大家的阅读!

以上就是关于MVC控制器的方法及对应视图怎么找全部的内容,包括:MVC控制器的方法及对应视图怎么找、iOS中container view的简单使用、iOS的UIPageViewController翻页视图控制器讲解等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9332052.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-27
下一篇 2023-04-27

发表评论

登录后才能评论

评论列表(0条)

保存