xcode - Expected identifier or "(" when adding picker -
xcode - Expected identifier or "(" when adding picker -
hello getting error when effort add together picker :uiviewcontroller uiimagepickercontrollerdelegate ... suggestions..thanks
#import <uikit/uikit.h> #import "gpuimage.h" #import "gpututorialcell.h" @interface gpututorialviewcontroller :uiviewcontroller <uiimagepickercontrollerdelegate> uiviewcontroller { //expected identifier or "(" nsmutablearray *filternames; } - (ibaction)load:(id)sender; - (ibaction)save:(id)sender; @property (weak, nonatomic) iboutlet uiimageview *imageview; @property (weak, nonatomic) iboutlet uitableview *filterstable; @end
uiviewcontroller { //expected identifier or "(" nsmutablearray *filternames; }
it looks you're trying declare instance variable. stray uiviewcontroller
has worked way code. delete it. this:
{ nsmutablearray *filternames; }
xcode identifier
Comments
Post a Comment