国产探花免费观看_亚洲丰满少妇自慰呻吟_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開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 南通市| 枣强县| 通海县| 盐源县| 长岭县| 定远县| 彭水| 宜良县| 锦州市| 江孜县| 德安县| 舟曲县| 清苑县| 保康县| 穆棱市| 台安县| 长葛市| 孝昌县| 郸城县| 乐清市| 怀安县| 雷山县| 邻水| 民县| 海城市| 墨竹工卡县| 五家渠市| 正宁县| 惠东县| 交城县| 洛川县| 鹤岗市| 吴川市| 东乌珠穆沁旗| 临潭县| 五家渠市| 忻城县| 淅川县| 崇义县| 沁水县| 札达县|