ios的文本输入框默认弹出中文的复制粘贴

[UITextView becomeFirstResponder ] ;

 

  • 如何将iOS的文本框默认的copy、past改成中文复制粘贴

 

info.plist中将Localization native development region改为China,并增加Localized resources can be mixed,设为YES,

ps:此方法也可以将导航栏中的返回按钮由“back”变为“返回”

  • NSString 分隔符生成数组NSArray

NSArray * lineArray = [lineAll componentsSeparatedByString:@"|"];

 

  • 如何获得指定日期是星期几
[plain] view plaincopy
 
  1. NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];  
  2. NSDate *now2;  
  3. NSDateComponents *comps = [[NSDateComponents alloc] init];  
  4. NSInteger unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSWeekdayCalendarUnit |   
  5. NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;  
  6. now2=[NSDate date];  
  7. comps = [calendar components:unitFlags fromDate:now2];  
  8. int week = [comps weekday];      
  9. int month = [comps month];  
  10. int day = [comps day];  
  11. int hour = [comps hour];  
  12. int min = [comps minute];  
  13. int sec = [comps second];  

 

  • 百度地图,显示当前用户所在位置,并居中

CLLocationCoordinate2D coordinate=userLocation.location.coordinate;
  BMKCoordinateRegion region = BMKCoordinateRegionMake(coordinate, BMKCoordinateSpanMake(0.5, 0.5));

 [_mapView setRegion:region animated:NO];

 

 

 Check with your keychain listings.. There might be duplicate profiles as you have already installed new one over older one. In cas you found duplicate profiles, remove older one and remove your "DerivedData" (in case of xcode 4.3/ xcode 4.5) or "Build" folder and then set profile settings for your target and try to rebuild.

posted @ 2013-07-15 16:06  flowbywind  阅读(860)  评论(0)    收藏  举报