#import "listView.h"
@interface listView ()
@property NSMutableArray *objects;
@end
@implementation listView
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)listData:(id)sender{
}
#pragma mark - Segues
@end
//then in the XIB, select files owner class as listView and connect View to the XibView.
No comments:
Post a Comment