2012-04-05 51 views

回答

1

獲取UITextFieldtext屬性,刪除最後一個字符,並設置新的字符串返回UITextField

- (void)someButtonPressed:(id)sender { 
    NSString *text = [myTextField text]; 
    text = [text substringToIndex:[text length] - 1]; 
    [myTextField setText:text]; 
} 
+0

非常感謝。 :) – 2012-04-05 09:18:23

相關問題