有無論如何,我可以允許用戶在文本視圖中只輸入字母數字字符,沒有其他字符。只允許在UITextView中的字母數字字符
編輯:
試過,
if ([_txtView.text rangeOfCharacterFromSet:alphaSet].location != NSNotFound)
{
UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@"Hello" message:@"Only alpha numeric characters are allowed" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
return;
}
,但這隻適用於某些時代
謝謝!
如果章程不是字母數字,則在「shouldChangeCharactersInRange」方法中返回NO。 – user1113101 2013-04-22 12:37:10