比如說,在UITextField中有10個字符,我通過編碼實現了,點擊UIButton可以逐個刪除這些字符。不過我需要更進一步的限制:用戶只能刪除10個字符中後5個字符。這樣應該怎麼實現?
代碼:
-(IBAction)delete:(id)sender{
if ([display.text length] != 0) {
display.text = [display.text substringToIndex:[display.text length]-1];
}
if ([display.text length] > 5) {
display.text = [display.text substringToIndex:[display.text length]-1];
}