贴一段我很久以前写的小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
建三个UIViewController 的子控制器,其中一个为根控制器,另外两个控制器的视图作为切换对象AppDelegate中代码//AppDelegate.h中代码#import @interface AppDelegate : UIResponder @property (retain, no...
分类:
其他好文 时间:
2014-07-13 23:15:04
阅读次数:
284
有三个view,分别为view1、view2、view3,通过UISegmentedControl进行三个view的切换。Ios代码@interfaceUIViewDemoViewController:UIViewController{IBOutletUIView*view1;IBOutletUIV...
分类:
移动开发 时间:
2014-07-13 09:47:17
阅读次数:
221
视图控制器应该在MVC设计模式中扮演控制层(C)的角色,UIViewController的职责对内管理与之关联的View,对外跟其他UIViewController通信和协调。一个视图控制器管理一个视图(它可以有子视图),其view属性指向它所管理的视图。UIViewController类可以有子类...
分类:
移动开发 时间:
2014-07-12 12:58:07
阅读次数:
231
在项目中定义了以new开头的textField,结果报错:
先看我的源码:#import
@interface ResetPasswordViewController : UIViewController
@property (weak, nonatomic) IBOutlet UITextField *phoneTextField;
@property (weak, nonatomic) ...
分类:
其他好文 时间:
2014-07-09 12:09:41
阅读次数:
208
#import "CoolSegue.h"
@implementation CoolSegue
-(void)perform
{
UIViewController* source = self.sourceViewController;
UIViewController* destination = self.destinationViewController;...
分类:
移动开发 时间:
2014-07-08 21:12:14
阅读次数:
207
TabBar与Push相反,他以底部为导航 以头部为内容区域,如图:
打开storyboard文件,创建一个UITabBarController文件到画板中,默认带了2个 UIViewController,根据需要拖动或者删除UIViewController,
如何关联他们,如图 :
并且 底部的样式由每个UIViewController样板决定,如图:...
分类:
移动开发 时间:
2014-07-08 11:22:42
阅读次数:
242
Modal模式是指模态切换,新开的界面会挡住之前的界面,使之不能获取焦点。
创建一个singleView模板的程序,打开storyboard文件,拖动2个UIViewController到界面中,按住control,从按钮处直接拖动到第2个vc如图:
然后放开,选择modal模式: 意思就是只要点击按钮 就能从下到上弹出第2个界面
对于每个uiviewController,...
分类:
移动开发 时间:
2014-07-08 10:57:18
阅读次数:
240
两个办法:1,手动为每一个UIViewController添加navigationItem的leftButton的设置代码2,为UINavigationController实现delegate,在pop和push的时候改变当前和上一页的navigationItem.title以下是封装的一些基础方法...
分类:
移动开发 时间:
2014-07-05 20:30:07
阅读次数:
337