我希望创建Keynote for iPad中显示的侧边栏的表示。我该如何为iOS做这个?我想像是需要一个UITableView,但是对保存当前屏幕还不太确定?
已经看过一个示例项目,但没有太多帮助
答案 0 :(得分:0)
使用此链接我认为这对您有所帮助。首先尝试使用此代码。 您将尝试此代码在nib上添加一个scrollview并在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数组,其中包含许多文本,例如您想要多少视图。
然后也检查一下。