LTView(定义一个视图的类,相当于C中的函数)

  

(1). 创建一个UIView的子类 LTView;



以下步骤下LTView.h

@interface LTView :UIView<UITextFieldDelegate>(10).签订回收键盘的协议



定义两个属性

@property(nonatomic,retain)UILabel *myLabel;

@property(nonatomic,retain)UITextField *myTextField;

注意:因为要在类的外部获取输入框的内容,修改Label的标题,所以我们可以把这两部分作为属性写在.h,这样在外部可以直接进行修改和设置


以下步骤下LTView.m

(3).重写默认的初始化方法(init)


-(instancetype)initWithFrame:(CGRect)frame

{

    self = [superinitWithFrame:frame];

    if (self) {

        把代码写成模块化(模块化最好的方法  写方法)

        (5).利用 self调用已写好的方法即createView

        [selfcreateView];        

        (6)在最下面********

        (7)AppDelegate.m

    }

    returnself;

}


(4).写一个没有参数和返回值的方法

-(void)createView

{

    创建两个子视图,一个Label,一个是textfield

    self.myLabel = [[UILabelalloc]initWithFrame:CGRectMake(20,20, 100,30)];

    self.myLabel.backgroundColor = [UIColoryellowColor];

    

    LTView LTView相当于self即父视图

    [selfaddSubview:self.myLabel];

    [self.myLabelrelease];

    self.myTextField = [[UITextFieldalloc]initWithFrame:CGRectMake(150,20, 100,40)];

    self.myTextField.backgroundColor = [UIColorcyanColor];

    [selfaddSubview:self.myTextField];

    

    (11).设置代理人

    self.myTextField.delegate =self;

    [self.myTextFieldrelease];

}

 - (BOOL)textFieldShouldReturn:(UITextField *)textField

{

    [textFieldresignFirstResponder];

    return YES;

}



(6).释放

- (void)dealloc

{

    [_myTextFieldrelease];

    [_myLabelrelease];

    [superdealloc];

}






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值