Hi,
I declared a “public” variables in header file like this in bellow :
I try inherit this object in Java but I can;t see the declared variables but I can access the parent method which is
initData. I got no problems accessing parent;s variables and method in obj-c
Any ideas ?
Thanks
Ivan
I got no problems access this parent in obj-c
@interface TableViewController : UIViewController {
@public
NSMutableArray *headData;
NSMutableArray *leftTableData;
NSMutableArray *rightTableData;
}
- (void)initData ;
@end