0

我希望创建Keynote for iPad中显示的侧边栏的表示。我怎样才能为 iOS 做到这一点?我会想象需要一个 UITableView,但不太确定是否保存当前屏幕?

已经看过一个示例项目,但没有太多帮助

4

1 回答 1

0

使用此链接我认为这对您有帮助。首先尝试使用此代码。您将尝试此代码在 nib 上添加一个滚动视图并在 viewdidload 上设置其内容大小

CGFloat x = 20;
for (int i = 0;i<[playerScores count];i++) {
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(x, 10, 60, 60)];
view.backgroundColor=[UIColor blueColor];
NSString *text = [NSString stringWithFormat:[playerScores objectAtIndex:i]];
[view setText:text];

[yardsScrollView addSubview:view];
[myLabel release];
x = x+125;
}

PlayersScore 是一个 NSMutable 数组,其中包含许多文本,例如您想要多少视图。

然后也检查一下。

https://github.com/bjhomer/HSImageSidebarView

于 2012-05-03T10:08:51.720 回答