typedef NS_ENUM(NSInteger, TCommentWithDetailType)
{
ECommentWithDetailTypeNone,
ECommentWithDetailTypeLink,
ECommentWithDetailTypePic,
ECommentWithDetailTypeVideo
};
这个结构体对于我们其他的.h文件也是适用的,所以我们可以在其他的.h文件里面直接import就可以使用了
typedef NS_ENUM(NSInteger, TCommentWithDetailType)
{
ECommentWithDetailTypeNone,
ECommentWithDetailTypeLink,
ECommentWithDetailTypePic,
ECommentWithDetailTypeVideo
};
这个结构体对于我们其他的.h文件也是适用的,所以我们可以在其他的.h文件里面直接import就可以使用了