UISegmentedControl设置UITableView、页面控件、滚动视图、图像视图
我有一个带有 4 段
段 1 的分段控件 - 我需要一个页面控件来滑动照片<- ->左 &正确的。最多 1- 4 张照片
第 2 段和第 2 段3 - 我需要一个表格视图
段 4 - 我需要它能够播放视频
我目前正在使用
- (IBAction)infoAction:(id)sender {
NSString * selectedTitle = [info titleForSegmentAtIndex:[info selectedSegmentIndex]];
NSLog(@"Selected Title = %@",selectedTitle);//test
switch ([info selectedSegmentIndex])
{ case 0:
{
test.text = [frogInfo.imageFiles objectAtIndex:0];
test.textColor = [UIColor whiteColor];
[tempImageView setImage:[UIImage imageNamed:@"Detail1Temp.png"]];
break;
}
case 1:
{
test.text = frogInfo.description;
test.textColor = [UIColor whiteColor];
[tempImageView setImage:[UIImage imageNamed:@"Detail2Temp.png"]];
break;
}
case 2:
{
test.text = frogInfo.distribution;
test.textColor = [UIColor whiteColor];
[tempImageView setImage:[UIImage imageNamed:@"Detail3Temp.png"]];
break;
}
case 3:
{
test.text = [frogInfo.videoFiles objectAtIndex:0];
test.textColor = [UIColor whiteColor];
[tempImageView setImage:[UIImage imageNamed:@"Detail4Temp.png"]];
break;
}
}
}
页面控件
部分表格视图
根据我想做的事情,可能吗?在这个 switch case 函数中?
任何人都可以展示或提供有关如何计算页面控件滑动的教程的任何链接吗?
感谢您阅读
德斯
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我做了一些非常类似的事情,尽管我使用了 UISlider 而不是分段控件 - 你需要的是一个可分页的 UISCrollview,其中有 4 个大小相等的页面(UIViews),如果每页占据 iPhone 的整个宽度为 320,则依次水平加载宽,滚动视图的内容大小宽度将为 1280。绑定 UIsegmented 控件以编程方式滚动页面:
假设页面宽度为 320:
要加载滚动视图和管理页面控制器:
请注意,您可能需要控制或管理用户滚动滚动视图的能力 - 您可以通过设置滚动视图委托来做到这一点 - 下面的代码不适合您的确切要求,但我相信您可以弄清楚剩下的!
I have done something very similar although I used a UISlider instead of segmented control - What you need is a pageable UISCrollview with 4 equal sized pages (UIViews) loaded horizontally one after another if take-up the entire width of an iPhone each page is 320 wide and the content size width of your scrollview will be 1280. Tie up the UIsegmented controls to scroll the pages programatically:
assuming a page width of 320:
To load the scrollview and manage the pagecontroller:
Note you may need to control or manage the user ability to scroll the scroll view - you do that by setting up the scrollview delegate - the code below is not fitted to your exact requirement but I'm sure you can figure out the rest!