如何在构建时使用单个#define 数字控制多个 UITableView 的数量?
我的应用程序目前需要 4 个 UITableView。后来,这个数字会增加,所以我想在构建时用一个 #define 来控制这个数量。
但是当我在 @property 声明中使用数组时出现错误:
#define TOTAL_TX_CHANNELS 4
@interface blah() <UITableViewDataSource, UITableViewDelegate CBPeripheralDelegate>
{
}
@property (strong, nonatomic) UITableView* channel_tableView[ TOTAL_TX_CHANNELS ] ;
有什么诀窍?我应该使用 NSArray 还是什么?