use UITextFieldDelegate
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
return (textField.text.length >= 64 && range.length == 0) ? NO : YES;
}
iOS UITextField length limit
標籤: iOS 0 意見張貼者: kenywalker 於 凌晨2:44
iOS avoid rotation recreating activity
標籤: iOS 0 意見android:configChanges="orientation|keyboardHidden"Caution: Beginning with Android 3.2 (API level 13), the "screen size" also changes when the device switches between portrait and landscape orientation. Thus, if you want to prevent runtime restarts due to orientation change when developing for API level 13 or higher (as declared by the minSdkVersion and targetSdkVersion attributes), you must include the "screenSize" value in addition to the "orientation" value. That is, you must decalare android:configChanges="orientation|screenSize". However, if your application targets API level 12 or lower, then your activity always handles this configuration change itself (this configuration change does not restart your activity, even when running on an Android 3.2 or higher device). reference
張貼者: kenywalker 於 凌晨12:03
訂閱:
意見 (Atom)
Diseño e iconos por N.Design Studio | A Blogger por Blog and Web
