根据文档here我要使用typedef
为SexyTooltip指定一个箭头指示数组。
他们建议:
typedef NS_ENUM(NSUInteger, SexyTooltipArrowDirection) {
SexyTooltipArrowDirectionUp,
SexyTooltipArrowDirectionDown,
SexyTooltipArrowDirectionLeft,
SexyTooltipArrowDirectionRight
};
我对typedef
是什么以及在定义它之后如何使用它感到困惑。我将如何按照文档中的描述实现这一点?
答案 0 :(得分:1)
SexyTooltip.h
中有一个例子:
SexyTooltip *tooltip = [[SexyTooltip alloc] initWithView:self.instructionsView];
tooltip.permittedArrowDirections = @[@(SexyTooltipArrowDirectionDown), @(SexyTooltipArrowDirectionUp)];
您不会创建已经为您提供的问题中显示的枚举。