찾다

 >  Q&A  >  본문

objective-c - 想做一个可以讲textfield中的内容合并为一个字符串的功能

如题。。。小白学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

迷茫迷茫2806일 전510

모든 응답(3)나는 대답할 것이다

  • 巴扎黑

    巴扎黑2017-04-22 09:02:31

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

    또는

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

    회신하다
    0
  • PHP中文网

    PHP中文网2017-04-22 09:02:31

    으아악

    stringByAppendingString은 문자열

    을 연결하는 데 사용됩니다.

    회신하다
    0
  • 巴扎黑

    巴扎黑2017-04-22 09:02:31

    stringWithFormat

    회신하다
    0
  • 취소회신하다