dart-native / codegen

Generator for dart_native bindings. Codegen can transform native SDK to Flutter plugin.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Objective-C/C enum

yulingtianxia opened this issue · comments

场景:

enum {
    aa = 0,
} API_UNAVAILABLE(ios);


typedef enum aaaa : NSUInteger {
    a,
    b,
    c,
} MyEnum API_UNAVAILABLE(macos);