stringByAppendingPathComponent是添加/号,使之变成一个完整的路径 NString * str=@“tmp”; str=[stringByAppendingPathComponent:@"hello.png"]; str就变成 tmp/hello.png了 如果是stringByAppendingPathExtension 是加后缀的意思 str=[str stringByAppendingPathExtension:@"jpg"]; str就是 str.jpg