ビューコントローラーのドラッグUITableView
定義で簡単なことを試しています
#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;
アプリを実行しようとするとクラッシュします。私は同じ関連する問題を読んで、viewcontrollerを選択してからビューセットにしようとしていますUITableviewcontroller
が、それでも問題が発生します。