实例方法
dequeueReusableCellWithIdentifier:
初始化一个指定重用标识符的 UITableCell对象
两个协议
UITableViewDataSource
tableView:numberOfRowsInSection: (required)
行数在 指定分区中
tableView:cellForRowAtIndexPath: (required)
每个Cell显示的具体内容
numberOfSectionsInTableView:
分区的个数
tableView:titleForHeaderInSection:
分区的标题
tableView:canEditRowAtIndexPath:
能否编辑
UITableViewDelegate
tableView:didSelectRowAtIndexPath:
点击cell时执行 的委托方法
简单的Demo
效果图
点击细节按钮将显示一个 AlertView。如果想显示细节信息,亦可以用Master-Detail模板进行创建项目,里面提供好了很多现成 的方法,更加方便和快捷.
时间: 2024-10-28 12:17:16