博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
stringByAppendingPathComponent和stringByAppendingString的区别
阅读量:6289 次
发布时间:2019-06-22

本文共 586 字,大约阅读时间需要 1 分钟。

转载自:http://arc9.riaos.com/?p=4980

cyy:自我理解,不保证正确,但亲自试验确实可行:若用 stringByAppendingString  则需要手动在名称前加 “/”符号,而stringByAppendingPathComponent则不需要,它会自动添加

 

 

stringByAppendingPathComponent和stringByAppendingString的区别:

 

 

NSString *imagePath = [skinPath stringByAppendingString:[NSString stringWithFormat:@"/%@",imageName]];//stringByAppendingString是在skinPath加后缀的意思    NSString *imagePath = [skinPath stringByAppendingPathComponent:imageName];//stringByAppendingPathComponent是在skinPath后面加上“/”号连接imageName让它成为完整的路径    NSLog(@"imagePath:%@",imagePath);

 

转载于:https://www.cnblogs.com/ZhangYuGe/p/4425609.html

你可能感兴趣的文章