iphone開發(fā)中的一些小技巧
1.只有這2種數(shù)字鍵盤才有效果。UIKeyboardTypeNumberPad,UIKeyboardTypePhonePad
2. keyboardAppearance = UIKeyboardAppearanceAlert
- (void)textViewDidBeginEditing:(UITextView *)textView{
NSArray *ws = [[UIApplication sharedApplication] windows];
for(UIView *w in ws){
NSArray *vs = [w subviews];
for(UIView *v in vs)
{
if([[NSString stringWithUTF8String:object_getClassName(v)] isEqualToString:@UIKeyboard])
{
v.backgroundColor = [UIColor redColor];
}
}
}
13、設(shè)置時(shí)區(qū)
NSTimeZone *defaultTimeZone = [NSTimeZone defaultTimeZone];
NSTimeZone *tzGMT = [NSTimeZone timeZoneWithName:@GMT];
[NSTimeZone setDefaultTimeZone:tzGMT];
上面兩個(gè)時(shí)區(qū)任意用一個(gè)。
14、Ipad隱藏鍵盤的同時(shí)觸發(fā)方法。
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillHide:)
name:UIKeyboardWillHideNotification
object:nil];
- (IBAction)keyboardWillHide:(NSNotification *)note
14、在一個(gè)程序中打開另一個(gè)程序的方法。
http://www.cocoachina.com/iphonedev/sdk/2010/0322/768.html
15、計(jì)算字符串的字?jǐn)?shù)
-(int)calculateTextNumber:(NSString *)text
{
float number = 0.0;
int index = 0;
for (index; index [text length]; index++)
{
NSString *protoText = [text substringToIndex:[text length] - index];
NSString *toChangetext = [text substringToIndex:[text length] -1 -index];
NSString *charater;
if ([toChangetext length]==0)
{
charater = protoText;
}
else
{
NSRange range = [text rangeOfString:toChangetext];
charater = [protoText stringByReplacingCharactersInRange:range withString:@];
}
NSLog(charater);
if ([charater lengthOfBytesUsingEncoding:NSUTF8StringEncoding] == 3)
{
number++;
}
else
{
number = number+0.5;
}
}
return ceil(number);
}
評(píng)論