久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

獲取時間 年月日時分秒 星期

 久辰堡 2015-07-24

-(void)prepareTime{

    NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];

    NSDate *now;

    NSDateComponents *comps = [[NSDateComponents alloc] init];

    NSInteger unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSWeekdayCalendarUnit|NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;

    now=[NSDate date];

    comps = [calendar components:unitFlags fromDate:now];

    NSInteger week = [comps weekday];

    NSInteger year=[comps year];

    NSInteger month = [comps month];

    NSInteger day = [comps day];

     NSInteger hour = [comps hour];

   NSInteger min = [comps minute];

   NSInteger sec = [comps second];

    NSString*monthStr;

    if (month<10) {

        monthStr=[NSString stringWithFormat:@"0%ld",month];

    }else

    {

        monthStr=[NSString stringWithFormat:@"%ld",month];

    }

    NSString*dayStr;

    if (day<10) {

        dayStr=[NSString stringWithFormat:@"0%ld",day];

    }else

    {

        dayStr=[NSString stringWithFormat:@"%ld",day];

    }

    week--;//這個不知怎么當(dāng)時寫的時候需要減一

    NSString*weekStr;

    switch (week) {

        case 1:

        {

            weekStr=@"周一";

        }

            break;

        case 2:

        {

            weekStr=@"周二";

        }

            break;

        case 3:

        {

            weekStr=@"周三";

        }

            break;

        case 4:

        {

            weekStr=@"周四";

        }

            break;

        case 5:

        {

            weekStr=@"周五";

        }

            break;

        case 6:

        {

            weekStr=@"周六";

        }

            break;

        case 7:

        {

            weekStr=@"周日";

        }

            break;

        default:

            break;

    }

    UILabel*label=[[UILabel alloc]initWithFrame:CGRectMake(0, 160,150, 40)];

    label.text=[NSString stringWithFormat:@"%ld/%@/%@ %@",year,monthStr,dayStr,weekStr];

    [self addSubview:label];

}



返回當(dāng)前時間,,精確到毫秒
  1. - (NSString *)getTimeNow  
  2. {  
  3.     NSString* date;  
  4.      
  5.     NSDateFormatter * formatter = [[NSDateFormatter alloc ] init];  
  6.     //[formatter setDateFormat:@"YYYY.MM.dd.hh.mm.ss"];  
  7.     [formatter setDateFormat:@"YYYY-MM-dd hh:mm:ss:SSS"];  
  8.     date = [formatter stringFromDate:[NSDate date]];  
  9.     timeNow = [[NSString alloc] initWithFormat:@"%@", date];  
  10.     NSLog(@"%@", timeNow);  
  11.     return timeNow;  
  12. }  


    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點(diǎn),。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點(diǎn)擊一鍵舉報。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約