请输入标题 请输入文本内容

来源:互联网 发布:opencv 灰度共生矩阵 编辑:程序博客网 时间:2024/05/01 20:31

//

//  ViewController.m

//  123

//

//  Created by 红珊瑚 on 15/5/6.

//  Copyright (c) 2015 红珊瑚. All rights reserved.

//


#import "ViewController.h"


@interface ViewController ()<UITextFieldDelegate,UITextViewDelegate>

{

   UILabel *label;

}

@end


@implementation ViewController


- (void)viewDidLoad

{

    [superviewDidLoad];

   UITextField *textField=[[UITextFieldalloc]initWithFrame:CGRectMake(30,60,260,30)];

    textField.backgroundColor=[UIColorblueColor];

    textField.text=@"请输入标题";

    textField.textColor=[UIColorlightGrayColor];

    //textField.alpha=0.7;

    

    UITextView *textView=[[UITextViewalloc]initWithFrame:CGRectMake(20,120,280,200)];

    textView.backgroundColor=[UIColorbrownColor];

    label=[[UILabelalloc]initWithFrame:CGRectMake(30,120,260,30)];

    label.text=@"请输入文本内容";

   label.alpha=0.5;

    

    [self.viewaddSubview:textField];

    [self.viewaddSubview:textView];

    [self.viewaddSubview:label];

    

    textField.delegate=self;


}

-(void)textFieldDidBeginEditing:(UITextView *)textView

{

   NSLog(@"");

   label.alpha=1;

    //[self.view addSubview:label];


}

-(void)textFieldDidEndEditing:(UITextView *)textView

{

   NSLog(@"");

   label.text=nil;

    //label.alpha=0;

    //[label removeFromSuperview];

    


}


- (void)didReceiveMemoryWarning

{

    [superdidReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}


@end

0 0
原创粉丝点击