「名前」を入力し「自己紹介する」ボタンをクリックする自己紹介アプリです。
#import "ViewController.h"
@interface ViewController ()
// 名前
@property (weak, nonatomic) IBOutlet UITextField *tffName;
// メッセージ
@property (weak, nonatomic) IBOutlet UILabel *lbMessage;
@end
@implementation ViewController
@synthesize tffName;
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
// 自己紹介ボタンアクション
// キーボードの表示制御 - resignFirstResponder と透明なボタン
// http://xcatsan2.blogspot.jp/2009/11/resignfirstresponder.html
- (IBAction)intoroduceMe:(id)sender {
// 自己紹介文の表示
// stringWithFormat 文字列を置き換える
//
self.lbMessage.text =
[NSString stringWithFormat:@"私は、%@です。",self.tffName.text];
// キーボードの表示制御
[self.tffName resignFirstResponder];
}
@end
stringWithFormatで文字列を置き換えて画面上に表示している点です。
// 自己紹介文の表示
// stringWithFormat 文字列を置き換える
//
self.lbMessage.text =
[NSString stringWithFormat:@"私は、%@です。",self.tffName.text];
GitHub introduce
▫️参考ページ
コメントをお書きください