ios文本、鍵盤、按鈕的練習

來源:互聯網
上載者:User

一.貼圖為快

二.知識點

1.文本

2.鍵盤

 1>自動隱藏,方法1:Did End on Exit事件,添加hideKeyboard方法,調用resignFirstResponder讓讓輸入對象放棄其擷取輸入的權利;

                   方法2:(主要針對數字鍵台)觸摸背景來隱藏鍵盤。

 2>Keyboard屬性,預設,Number Pad,Email Address等。

3.按鈕

 1>給按鈕添加背景圖片,在視圖載入時設定,

- (void)viewDidLoad{

//在視圖載入時設定按鈕模板
UIImage *normalImage = [[UIImage imageNamed:@"whiteButton.png"] stretchableImageWithLeftCapWidth:12.0 topCapHeight:0.0];
UIImage *pressedImage = [[UIImage imageNamed:@"blueButton.png"] stretchableImageWithLeftCapWidth:12.0 topCapHeight:0.0];
[self.theButton setBackgroundImage:normalImage forState:UIControlStateNormal];

[super viewDidLoad];

[self.theButton setBackgroundImage:pressedImage forState:UIControlStateHighlighted];

}

2>createStory方法

self.theStory.text=[self.theTemplate.text stringByReplacingOccurrencesOfString:@"<place>" withString:self.thePlace.text];
self.theStory.text=[self.theStory.text stringByReplacingOccurrencesOfString:@"<verb>" withString:self.theVerb.text];
self.theStory.text=[self.theStory.text stringByReplacingOccurrencesOfString:@"<number>" withString:self.theNumber.text];

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.