2013-10-16 67 views
0

我已經在Xcode4之前的應用程序之前成功完成了這一點,但它似乎不再在Xcode5中工作。總之,我喜歡在UIViewController中加入UITableView。部分過程需要我將屬性添加到cell.h中,它包含的所有GUI元素如UILabel。問題是,我不能再按Ctrl-將這些元素拖到cell.h中。UITableView在UIViewController在Xcode5不起作用

Main.storyboard

UIViewControllerUITableViewUITableViewCell

  • 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

沒有增加。

回答

0

我通過手動鍵入IBOutlet屬性並將其鏈接,從而實現了它的工作。

ctrl-drag仍然不起作用FYI。

相關問題