NSObject help
I am trying to create an NSObject that has a list of buttons in it. here is the code in my .h
@interface buttonarray : NSObject {
UIButton button;
UIButton button1;
}
but when i try this i get the error
error: expected specifier-qualifier-list before 'interface'
Can i get some help please.
|