华山论剑之iOS 拼接签名的时间戳

吵架后先道歉的人不是因为错,而是因为珍惜.

时间戳是在签名中扮演着重要的角色,我们可以我们可以使用时间戳让我们的签名时刻发生改变,以前工作中都是只是把代码谢了一遍又一遍,为了降低代码的重复率,所以我把时间转化为时间戳和时间戳转化为时间谢了两个方法,以后,直接来这里CV就好

  • 当前时间转化为时间戳
-(NSString *)transformWithNowTime{

    NSDate *datenow = [NSDate date];//现在时间,你可以输出来看下是什么格式

    NSString *timeSp = [NSString stringWithFormat:@"%ld", (long)[datenow timeIntervalSince1970]];

    return timeSp;

}



  • 时间戳转化为时间

-(NSString *)transformWithDatatime:(NSInteger)datatime{
    
    
    NSDateFormatter *formatter = [[NSDateFormatter alloc] init] ;
    
    formatter.dateFormat = @"yyyy-MM-dd";
    
    NSDate *confromTimesp = [NSDate dateWithTimeIntervalSince1970:datatime/1000];
    NSString *confromTimespStr = [formatter stringFromDate:confromTimesp];
    
    return confromTimespStr;
    
}

这里讲的只是一个时间戳和时间的相互转化,对于签名,我会写一篇文章,讲讲如何关于签名的相关的.

---->>>点击进入"华山论剑之iOS签名那点事"

你可能感兴趣的:(华山论剑之iOS 拼接签名的时间戳)