美文网首页
iOS时间格式转换无符号字符串

iOS时间格式转换无符号字符串

作者: a7cdfadad9f2 | 来源:发表于2016-12-15 11:12 被阅读0次

    NSString *timestr = @"2016-07-11 08:34:22";

    NSCharacterSet *doNotWant = [NSCharacterSet characterSetWithCharactersInString:@"-:"];

    NSString *tempString = [[timestr componentsSeparatedByCharactersInSet: doNotWant]componentsJoinedByString:@""];

    //tempString 最后的值:20160711083422

    相关文章

      网友评论

          本文标题:iOS时间格式转换无符号字符串

          本文链接:https://www.haomeiwen.com/subject/nkowmttx.html