码迷,mamicode.com
首页 > 移动开发 > 详细

stringByAppendingPathComponent和stringByAppendingString的区别

时间:2015-04-14 19:26:07      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:

转载自: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);

 

stringByAppendingPathComponent和stringByAppendingString的区别

标签:

原文地址:http://www.cnblogs.com/ZhangYuGe/p/4425609.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!