常用 iOS各种问题

来源:互联网 发布:92式步战车模型数据 编辑:程序博客网 时间:2024/06/05 04:53

 



      1. 本地化字符串

   

   [warnAryaddObject:NSLocalizedString(str,nil)];


   

   NSLocalizedString(@"Night, it's time for bed",@"夜深啦,该睡觉了"


  2.本地通知推送  

- (void)reminderSleep

{

   if (notification ==nil) {

        notification = [[UILocalNotificationalloc] init];

        NSDateFormatter *formatter = [[NSDateFormatteralloc] init];

        

        [formattersetDateFormat:@"HH:mm:ss"];

        

        //触发通知的时间

        

       NSDate *now = [formatter dateFromString:@"22:30:00"];

        

       notification.fireDate = now;

        

       //时区

        notification.userInfo =@{@"sleepNoti":@"Sleep"};

        

        notification.timeZone = [NSTimeZonedefaultTimeZone];

        

        //通知重复提示的单位,可以是天、周、月

        

        notification.repeatInterval =NSCalendarUnitDay;

        

       //通知内容

        

        notification.alertBody =NSLocalizedString(@"Night, it's time for bed",@"夜深啦,该睡觉了") ;

        

        //通知被触发时播放的声音

        

        notification.soundName =UILocalNotificationDefaultSoundName;

        

       //执行通知注册

        

        [[UIApplicationsharedApplication] scheduleLocalNotification:notification];

        

    }

    //    [[UIApplication sharedApplication] cancelAllLocalNotifications];//取消所有通知

}


  // 3.cell取消cell的选中状态

   cell.selectionStyle =UITableViewCellSeparatorStyleNone;


  5.约束在代码里面更改


  首先要连接xib的约束线在执行下面代码

   cell.changeLabTextX.constant =15.0f;








0 0
原创粉丝点击