码迷,mamicode.com
首页 >  
搜索关键字:ltview    ( 16个结果
视图控制器
?、?定义视图(label-textField组合视图 LTView) ?定义视图:系统标准UI之外,??组合?出的新的视图。 ?定义LTVie━使?了?种设计模式:复合设计模式。 复合设计模式:A类中,使?B类(或者更多类)作为??的成员(实 例变量)。 iOS新控件往往都是?已有控件组 合?成的
分类:其他好文   时间:2016-02-23 18:40:31    阅读次数:177
【Objective-C学习记录】第三十八天
自定义视图现在有些混乱,屡一下大概的编写思路:1.新建一个视图控制器,将此视图控制器指定为window的根视图控制器2.自定义视图LTView,明确LTView内部的控件,声明为属性,重写initWithFrame:布局方法,先将子视图添加上去。完善显示效果,需要再去定义一个初始化方法,参数为视图的...
分类:其他好文   时间:2016-01-08 20:19:50    阅读次数:125
封装UILable和UITextField
建一个类LTview重写初始化过程- (instancetype)initWithFrame:(CGRect )frame{ self = [super initWithFrame:frame]; if(self){ [self creatLabel:frame]; [self cr...
分类:其他好文   时间:2015-12-26 18:34:10    阅读次数:134
iOS基础-自定义视图、视图控制器
自定义视图例如,登陆页面中,左边label,右边textField。自定义@interface LTView : UIView@property (nonatomic,retain) UILabel *label;@property (nonatomic,retain) UITextField *t...
分类:移动开发   时间:2015-09-26 14:39:47    阅读次数:224
UI_03 ?定义视图、视图控制器
?、?定义label-textField视图 自定义LTView类,封装UILabel与UITextField,实现快速创建以下类型的视图 **** 使用UIView子类实现 **** LTView.h #import <UIKit/UIKit.h> @interface LTView : UIView ...
分类:其他好文   时间:2015-08-19 00:46:45    阅读次数:143
登陆界面(LTView,UITextField,UIButton)
设置几个类 AppDelegate LTView RootViewController LoginViewController RegistViewController PasswordViewControllerAppDelegate.mapplication中 // 设置一个UIViewController RootViewController *rootVC=[[RootViewC...
分类:其他好文   时间:2015-08-06 22:26:34    阅读次数:236
UI 03 LTView
LTView 是自写的继承于 UIView 的类 这其中创建一个UILabel 和一个 UITextField ; 这样可以少些一半的代码. 代码如下: LTView.h#import @interface LTView : UIView // 因为要在类的外部获取输入框的内容,修改Label的标题,所以我们把这两...
分类:其他好文   时间:2015-08-03 22:43:01    阅读次数:188
iOS UI03_登陆+注册 UI1~3系统归纳
完成登陆系统(登陆、注册、找回密码),使用容器视图控制器实现。 定义容器视图控制器ContainerViewController,指定为window的根视图控制器。 定义LoginViewController、RegistViewController、PasswordViewController,三个视图控制器的根视图添加到容器视图控制器的根视图。 // // AppDelegate.m //...
分类:移动开发   时间:2015-08-03 08:58:44    阅读次数:238
iOS UI03_UIViewController视图控制器
// //  AppDelegate.m //  UI03_UIViewController视图控制器 // //  Created by dllo on 15/7/31. //  Copyright (c) 2015年 zhozhicheng. All rights reserved. // #import "AppDelegate.h" ...
分类:移动开发   时间:2015-08-01 10:09:52    阅读次数:146
iOS UI03_LTView
// //  LTView.h //  OC03_LTView // //  Created by dllo on 15/7/31. //  Copyright (c) 2015年 dllo. All rights reserved. // #import @interface LTView : UIViewUITextF...
分类:移动开发   时间:2015-08-01 10:09:06    阅读次数:151
16条   1 2 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!