@availability关键字在Xcode中不起作用" alt + click"文档助手

时间:2014-05-14 10:01:33

标签: ios xcode documentation xcode5

我正在尝试记录我的头文件,我非常喜欢alt + click documentation helper的概念。 使用下面的代码我可以设置@param@return@see等关键字,但不幸的是@availability没有以正确的方式显示。

/**
 * Super method for super feature
 *
 * @param someParameter super cool method parameter
 *
 * @availability Version 3.0 (and later)
 *
 * @return void
 */

availability problem

问题是:如何在文档助手中设置可用性参数?

2 个答案:

答案 0 :(得分:2)

您正在寻找@since,而不是@availability

有关命令的完整列表,请参阅this question

答案 1 :(得分:0)

您需要用户NS_AVAILABLE_IOS(5_0)来显示可用性。
这是一个例子:

/**
 Check whether a file at a given URL has a newer timestamp than a given file.
 Example usage:
 @code
 NSURL *url1, *url2;
 BOOL isNewer = [FileUtils
 isThisFileNewerThanThatFile:url1 thatURL:url2];
 @endcode
 @param index
 The index
 @return the results
 */
- (UIImage*)imageForSectionIndex:(NSUInteger)index NS_AVAILABLE_IOS(6_0){
   // your implem
}