是否可以将uipickerview / uidateview动态添加到静态uitableview中?
我基本上想要与IOS日历输入相同的功能 - iOS Show UIPickerView between UITableViewCells 但由于我有一个静态表,我没有任何可用的表方法来应用我的插入代码 - 所以我很挣扎!
答案 0 :(得分:2)
Apple示例代码Datecell就如何操作提供了一个完美的示例。
答案 1 :(得分:1)
为了能够动态自定义静态表视图控制器,您可以覆盖表视图委托方法,如下所示:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// You can change the number of sections here...
return [super numberOfSectionsInTableView:tableView];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// You can change the number of rows here...
return [super tableView:tableView numberOfRowsInSection:section];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// You can change the returning cell of static table view here...
return [super tableView:tableView cellForRowAtIndexPath:indexPath];
}