ios - Redefinition of enumerator in two seperate frameworks -
i have 2 frameworks included in 1 of files
#import "sclalertview.h" #import "actionsheetstringpicker.h"
these frameworks unfortunately fighting against each other , trying define same constant.
typedef ns_enum(nsinteger, sclactiontype) { none, selector, block }; typedef ns_enum(nsinteger, actiontype) { value, selector, block };
is there easy solution redefinition of enumerator? change code, prefer not to, since update of frameworks revert changes , require me redo once again.
thank in advance.
i've removed 1 of frameworks.
Comments
Post a Comment