如果我做了一些愚蠢的事情,我会提前道歉。但我无法确定我的错误。
这是代码(头文件):
#import <Foundation/Foundation.h>
/**
Represents a cover image. It can be a game cover, a trophy image or even a player avatar.
It has three properties:
- **NSMutableString uri**: the link that points to the image.
- E.g.: [A Skyrim trophy image URI] (http://bit.ly/skyrimTrophyImageUri ).
- **UIImage img**: the actual image. That is, the bitmap.
- E.g.: 1A9A3826FB6B42C1B08824655A740620BC8E75F9.PNG
- **ResolutionType resolution**: the image resolution, which comes from an enumeration of this class called __"ResolutionType"__.
- E.g: SEN_75x41
*/
@interface NHOCCover : NSObject
结果:
我也试过:
- [天际奖杯图像 URI] ( http://bit.ly/skyrimTrophyImageUri ) (不含空格)
- [天际奖杯图像 URI](http://bit.ly/skyrimTrophyImageUri)(带空格)
也许 Xcode 弄乱了文件?关于第二个相关问题,您知道是否有办法阻止 Xcode 在其编辑器中自动创建链接?(我的意思是将字体颜色更改为蓝色并加下划线)。
提前致谢。