objective-c - 想做一个可以讲textfield中的内容合并为一个字符串的功能
迷茫
迷茫 2017-04-22 09:00:31
0
3
484

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

으아악

stringByAppendingString은 문자열

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

stringWithFormat

최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!