0
我已經在Xcode4之前的應用程序之前成功完成了這一點,但它似乎不再在Xcode5中工作。總之,我喜歡在UIViewController
中加入UITableView
。部分過程需要我將屬性添加到cell.h中,它包含的所有GUI元素如UILabel
。問題是,我不能再按Ctrl-將這些元素拖到cell.h中。UITableView在UIViewController在Xcode5不起作用
Main.storyboard
UIViewController
,UITableView
,UITableViewCell
UITableView
的具有UIViewController
作爲數據源和委託。- 請假設我在ViewController.m文件中使用了正確的委託方法。
testViewController.h
#import <UIKit/UIKit.h>
#import "testCell.h"
@interface testViewController : UIViewController
<UITableViewDataSource, UITableViewDelegate>
@property (weak, nonatomic) IBOutlet UITableView *myTableView;
@end
testViewController.m
@synthesize myTableView;
testCell.h
問題:無法按Ctrl鍵一個如同我在過去的應用程序中完成的,將單元格中的轉換爲此文件。
testCell.m
沒有增加。