我创建了一个名为的自定义表格视图单元格SellerMobileTableViewCell
,它将卖家的手机号码显示为标签,以及 SMS 和 Call 圆形矩形按钮:
该单元没有自己的 XIB 文件——它是一个原型单元,UITableView
其中自定义类设置为SellerMobileTableViewCell
. 包含类型为 sSellerMobileTableViewCell
的两个按钮。在界面生成器中,我也已经将按钮设置为它的自定义类。IBOutlet
ContactButton
ContactButton
#import <UIKit/UIKit.h>
#import "ContactButton.h"
@interface SellerMobileTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *numberLabel;
@property (weak, nonatomic) IBOutlet ContactButton *SMSButton;
@property (weak, nonatomic) IBOutlet ContactButton *callButton;
@end
这就是问题所在:当我没有SellerMobileTableViewCell.h
通过 Ctrl-Click 连接它们并拖动到IBOutlet
s 时,应用程序中会出现两个自定义按钮。但是,当我这样做时,并且我应该这样做时,它们根本不会出现。
我不明白为什么会这样。帮助?