我如何在垂直滚动中只显示不同的对象?模式应该是:标题(标签)、副标题、描述(UITextView?),可能是文本中的一些图像。
我正在尝试制作类似于 iChemistry app 的设计
问题在于 TextView 支持滚动,因为它已经是 UIScrollView 的子项。其次是我在垂直方面遇到了一些问题,显然 UIScrollView 只允许水平滚动到我的 UITextView。
如何仅在 UIScrollView 中显示不同的对象和多行文本? (就像 iChemistry 应用程序一样)。我还在 .app 中检查了它的文件,它从 .sqlite 数据库中获取了原始内容,所以它没有使用 HTML。
编辑:关于使用 TableView 执行此操作的建议?
你的问题不清楚。是否要启用垂直滚动到 UITextView 并禁用水平滚动?
其他问题:
Try UITableView, use different custom cells.
Or
Simply, use UIView and increase scrollView.contentSize.
这是在一个 UITableView 中使用不同自定义单元格的方法:
- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath
{
if(indexPath.section==0)
{
static NSString *simpleTableIdentifier = @"SimpleTableCell";
FirstCustomCell *cell = (FirstCustomCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed"FirstCustomCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
cell.textLabel.text= @"FirstCustomCellText";
return cell;
}
else
{
static NSString *simpleTableIdentifier = @"SimpleTableCell";
SecondCustomCell *cell = (SecondCustomCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed"SecondCustomCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
cell.textLabel.text= @"SecondCustomCellText";
return cell;
}
}
关于ios - 如何在垂直 UIScrollView 中显示文本和其他对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34535576/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |