码迷,mamicode.com
首页 >  
搜索关键字:uiviewcontroller    ( 1229个结果
ios中,在SearchBar里面搜索内容,可根据内容来查找所需的信息资源,可获得SearchBar中的内容
贴一段我很久以前写的小demo,你们就明白了,是把textField套在alertView里的@interface ViewController : UIViewController { UILabel *la; UITextField *myTextField;}@implementa...
分类:移动开发   时间:2014-07-16 21:26:11    阅读次数:282
新建一个登录,找回密码,注册页面的工程,使用控制器实现三个页面的跳转
新建一个工程,关闭ARC , AppDelegate.h 中window属性strong改成retain APPDelegate.m中window 初始化时加autorelease 上面重写dealloc方法建一个UIViewController 的子类RootViewController 把...
分类:其他好文   时间:2014-07-14 00:37:12    阅读次数:260
使用容器控制器控制另外两个控制器的view交换
建三个UIViewController 的子控制器,其中一个为根控制器,另外两个控制器的视图作为切换对象AppDelegate中代码//AppDelegate.h中代码#import @interface AppDelegate : UIResponder @property (retain, no...
分类:其他好文   时间:2014-07-13 23:15:04    阅读次数:284
[转]IOS Segment页面之间view的切换
有三个view,分别为view1、view2、view3,通过UISegmentedControl进行三个view的切换。Ios代码@interfaceUIViewDemoViewController:UIViewController{IBOutletUIView*view1;IBOutletUIV...
分类:移动开发   时间:2014-07-13 09:47:17    阅读次数:221
[转]iOS开发之视图控制器(UIViewController)
视图控制器应该在MVC设计模式中扮演控制层(C)的角色,UIViewController的职责对内管理与之关联的View,对外跟其他UIViewController通信和协调。一个视图控制器管理一个视图(它可以有子视图),其view属性指向它所管理的视图。UIViewController类可以有子类...
分类:移动开发   时间:2014-07-12 12:58:07    阅读次数:231
Error解决:Property's synthesized getter follows Cocoa naming convention for returning 'owned'
在项目中定义了以new开头的textField,结果报错: 先看我的源码:#import @interface ResetPasswordViewController : UIViewController @property (weak, nonatomic) IBOutlet UITextField *phoneTextField; @property (weak, nonatomic) ...
分类:其他好文   时间:2014-07-09 12:09:41    阅读次数:208
iOS自定义segue和自定义segue转场动画
#import "CoolSegue.h" @implementation CoolSegue -(void)perform { UIViewController* source = self.sourceViewController; UIViewController* destination = self.destinationViewController;...
分类:移动开发   时间:2014-07-08 21:12:14    阅读次数:207
IOS-Storyboard控制器切换之TabBar(3)
TabBar与Push相反,他以底部为导航 以头部为内容区域,如图: 打开storyboard文件,创建一个UITabBarController文件到画板中,默认带了2个 UIViewController,根据需要拖动或者删除UIViewController, 如何关联他们,如图 : 并且 底部的样式由每个UIViewController样板决定,如图:...
分类:移动开发   时间:2014-07-08 11:22:42    阅读次数:242
IOS-Storyboard控制器切换之Modal(1)
Modal模式是指模态切换,新开的界面会挡住之前的界面,使之不能获取焦点。 创建一个singleView模板的程序,打开storyboard文件,拖动2个UIViewController到界面中,按住control,从按钮处直接拖动到第2个vc如图: 然后放开,选择modal模式:  意思就是只要点击按钮 就能从下到上弹出第2个界面 对于每个uiviewController,...
分类:移动开发   时间:2014-07-08 10:57:18    阅读次数:240
IOS 改变Navigation的返回按钮
两个办法:1,手动为每一个UIViewController添加navigationItem的leftButton的设置代码2,为UINavigationController实现delegate,在pop和push的时候改变当前和上一页的navigationItem.title以下是封装的一些基础方法...
分类:移动开发   时间:2014-07-05 20:30:07    阅读次数:337
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!