Objective-c,iOS应用开发随笔

  • 如何编程方式给 UITextView 焦点

[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:@"|"];

  • 如何获得指定日期是星期几
    NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    NSDate *now2;
    NSDateComponents *comps = [[NSDateComponents alloc] init];
    NSInteger unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSWeekdayCalendarUnit | 
    NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;
    now2=[NSDate date];
    comps = [calendar components:unitFlags fromDate:now2];
    int week = [comps weekday];    
    int month = [comps month];
    int day = [comps day];
    int hour = [comps hour];
    int min = [comps minute];
    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.

ps:记得重启xcode

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值