国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > iOS > 正文

IOS代碼筆記UIView的placeholder的效果

2019-10-21 18:53:50
字體:
來源:轉載
供稿:網友

本文實例為大家分享了IOS占位符效果,供大家參考,具體內容如下

一、效果圖

 IOS,UIView,placeholder,占位符

二、工程圖

 IOS,UIView,placeholder,占位符

三、代碼
RootViewController.h

#import <UIKit/UIKit.h>@interface RootViewController : UIViewController<UITextViewDelegate>{  UITextView *psTextView;  UILabel *pslabel;}@end 

RootViewController.m

#import "RootViewController.h"@interface RootViewController ()@end@implementation RootViewController- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil{  self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];  if (self) {    // Custom initialization  }  return self;}- (void)viewDidLoad{  [super viewDidLoad];  // Do any additional setup after loading the view.    self.title=@"UIView的placeholder的效果";    [self initBackgroundView];}#pragma -mark -初始化背景圖-(void)initBackgroundView{  UIView *backView=[[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 480)];  [self.view addSubview:backView];    psTextView=[[UITextView alloc]initWithFrame:CGRectMake(10, 70, 280, 200)];  psTextView.text=@"";  psTextView.backgroundColor=[UIColor yellowColor];  psTextView.delegate=self;  psTextView.scrollEnabled=NO;  [backView addSubview:psTextView];      pslabel=[[UILabel alloc]initWithFrame:CGRectMake(15, 140, 280, 20)];  pslabel.text=@"請輸入備注信息";  pslabel.textColor=[UIColor grayColor];  pslabel.enabled=NO;  pslabel.backgroundColor=[UIColor clearColor];  [backView addSubview:pslabel];}#pragma -mark -UITextView Delegate- (BOOL)textViewShouldBeginEditing:(UITextView *)textView{  return YES;}-(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text{    if (text.length>0) {    pslabel.hidden=YES;  }    if ([text isEqualToString:@"/n"]) {    [textView resignFirstResponder];    return NO;  }    return YES;}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VEVB武林網。


注:相關教程知識閱讀請移步到IOS開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 崇阳县| 额尔古纳市| 株洲市| 马鞍山市| 三河市| 都兰县| 福建省| 岑溪市| 峨边| 东乌珠穆沁旗| 乌拉特中旗| 滕州市| 新野县| 江川县| 岚皋县| 安庆市| 图们市| 灵丘县| 阳原县| 陕西省| 崇州市| 灵武市| 漠河县| 石河子市| 吉木乃县| 高台县| 海口市| 宁强县| 仙居县| 始兴县| 申扎县| 苗栗县| 赣州市| 高雄县| 房产| 金秀| 山丹县| 二连浩特市| 苏州市| 伊吾县| 秦皇岛市|