如何为我的 SexyTooltip 实例定义允许的箭头方向?

How do I define permitted arrow directions for my instance of SexyTooltip?

根据文档 here 我要使用 typedef.

为 SexyTooltip 指定我的箭头方向数组

他们建议:

typedef NS_ENUM(NSUInteger, SexyTooltipArrowDirection) {
    SexyTooltipArrowDirectionUp,
    SexyTooltipArrowDirectionDown,
    SexyTooltipArrowDirectionLeft,
    SexyTooltipArrowDirectionRight
};

我对 typedef 是什么以及定义后如何使用它感到困惑。我将如何按照文档中的描述实现它?

SexyTooltip.h中有例子:

SexyTooltip *tooltip = [[SexyTooltip alloc] initWithView:self.instructionsView];
tooltip.permittedArrowDirections = @[@(SexyTooltipArrowDirectionDown), @(SexyTooltipArrowDirectionUp)];

您没有创建问题中显示的枚举,该枚举已经为您提供。