objective-c - 想做一個可以講textfield的內容合併成一個字串的功能
迷茫
迷茫 2017-04-22 09:00:31
0
3
506

如題。。。小白學IPHONE 開發,

linke了兩個text fild一個button,一個label,想要實現講兩個text field中輸入的字符串合並為一個,點一下button就會顯示在lable中

附上代碼:

@interface HWViewController ()
@property (strong, nonatomic) IBOutlet UILabel *combinedWord;
@property (strong, nonatomic) IBOutlet UITextField *secondText;
@property (strong, nonatomic) IBOutlet UITextField *firstText;
@property (strong, nonatomic) IBOutlet UIButton *combineButton;


- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    self.combinedWord.text=@"Wating...";

}
- (IBAction)myButtonPressed:(id)sender {
    NSString *combinedWord= textfiled1+textfield2

求高手回答,想自己做一個project來學習,看了document感覺還是不太會,Q

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

全部回覆(3)
巴扎黑

NSString *combinedWord= [firstText.text stringByAppendingString:secondText.text];

NSString *combinedWord= [NSString stringWithFormat:@"%@%@",firstText.text,secondText.text];

Ty80
- (IBAction)myButtonPressed:(id)sender {
    self.combinedWord.text = [self.secondText.text stringByAppendingString:self.firstText.text];
}

stringByAppendingString用來拼接一個字串

巴扎黑

stringWithFormat

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板