在Scrollview中从服务器加载数据? (动态 - 内容)

时间:2014-05-28 08:15:28

标签: c# objective-c uiscrollview

如何加载数据(文本,图像,计数器==一个块ist文本,图像和计数器)并在应用程序中显示可能的“UIScrollView”? 问题是它可以10块或100块。 如何在应用程序中显示此块,如Facebook应用程序中的“Wall”,这是ScollView吗?或表视图?

我希望tipps和提示:)

1 个答案:

答案 0 :(得分:1)

UITableView是壁式功能的最佳选择。 您需要为每种细胞类型设置不同的颜色。

使用UITableView的这个数据源方法来调整高度

-(CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section

使用

配置您的手机
-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

在UIScrollView上使用UITableView还为您提供了使用此委托方法单击单元格的附加功能

-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

在UIScrollView的情况下必须明确地完成。

干杯:)