テキストフィールドに特定の文字が含まれているかどうかを確認する条件ステートメントを実行しています。含まれている場合は、UIAlertView が表示されます。現時点では、テキスト フィールドに文字が含まれている場合にアラートが表示されます。! 、$など
if ([self.withdrawTextField.text rangeOfCharacterFromSet:[NSCharacterSet letterCharacterSet]].location != NSNotFound) {
UIAlertView * alert = [[UIAlertView alloc] initWithTitle:@"Ooops" message:@"Please only use numbers and the period (.)." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alert show];
}