日本a√视频在线,久久青青亚洲国产,亚洲一区欧美二区,免费g片在线观看网站

        <style id="k3y6c"><u id="k3y6c"></u></style>
        <s id="k3y6c"></s>
        <mark id="k3y6c"></mark>
          
          

          <mark id="k3y6c"></mark>

          新聞中心

          EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計應(yīng)用 > iphone開發(fā)中的一些小技巧

          iphone開發(fā)中的一些小技巧

          作者: 時間:2016-10-08 來源:網(wǎng)絡(luò) 收藏

          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è)置時區(qū)

          NSTimeZone *defaultTimeZone = [NSTimeZone defaultTimeZone];

          NSTimeZone *tzGMT = [NSTimeZone timeZoneWithName:@GMT];

          [NSTimeZone setDefaultTimeZone:tzGMT];

          上面兩個時區(qū)任意用一個。

          14、Ipad隱藏鍵盤的同時觸發(fā)方法。

          [[NSNotificationCenter defaultCenter] addObserver:self

          selector:@selector(keyboardWillHide:)

          name:UIKeyboardWillHideNotification

          object:nil];

          - (IBAction)keyboardWillHide:(NSNotification *)note

          14、在一個程序中打開另一個程序的方法。

          http://www.cocoachina.com/iphonedev/sdk/2010/0322/768.html

          15、計算字符串的字數(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);

          }


          上一頁 1 2 下一頁

          關(guān)鍵詞:

          評論


          相關(guān)推薦

          技術(shù)專區(qū)

          關(guān)閉