I am trying simple things in view controller drag UITableView
define
#import <UIKit/UIKit.h> @interface ViewController : UIViewController <UITableViewDataSource,UITableViewDelegate>
{
IBOutlet UITableView* tv;
}
@property(nonatomic,retain)IBOutlet UITableView * tv;
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
@synthesize tv;
when I try to run the app it crashes. I read same related issue and I am trying to select viewcontroller then in view set UITableviewcontroller
but I still get the issue .