你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> IOS - 獲取UITextField的輸入文本

IOS - 獲取UITextField的輸入文本

編輯:IOS開發綜合

當UITextField文本改變時, 根據內容更新數據, 通過寫監聽事件即可.
添加監聽:

[timesField addTarget:self
               action:@selector(textFieldDidChange:)
     forControlEvents:UIControlEventEditingChanged]; // 監聽事件

監聽事件:

// 監聽改變按鈕
- (void) textFieldDidChange:(UITextField*) sender {

    // 文本內容
    NSInteger times = [sender.text integerValue];
    [_serviceNumList replaceObjectAtIndex:_servicePos withObject:[NSNumber numberWithInteger:times]];

    // 總價
    _totalPrice = (float)([_goodsList[_servicePos][@Price] floatValue]/100.0)*[[_serviceNumList objectAtIndex:_servicePos] integerValue];
    [_totalPriceLabel setText:[NSString stringWithFormat:@%0.1f, _totalPrice]];
}

其余UITextField屬性:

        // 輸入框
        UITextField *timesField = [[UITextField alloc] initWithFrame:CGRectMake(200*kViewRatio, 10*kViewRatio, 32*kViewRatio, 20*kViewRatio)]; // 位置大小
        [timesField setBorderStyle:UITextBorderStyleRoundedRect]; //外框類型
        NSAttributedString* timesText =[[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@%ld, (long)[[_serviceNumList objectAtIndex:row] integerValue]]]; // 設置文字
        [timesField setAttributedText:timesText];
        [timesField setFont:[UIFont systemFontOfSize: 12*kViewRatio]]; // 文字大小
        [timesField setTextAlignment:NSTextAlignmentCenter]; // 文字位置
        [timesField setDelegate:self]; // 限制長度
        [timesField addTarget:self
                       action:@selector(textFieldDidChange:)
             forControlEvents:UIControlEventEditingChanged]; // 監聽事件
        [itemView addSubview:timesField]; // 添加父視圖

 

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved