How to create image slider in iOS?(如何在 iOS 中创建图像滑块?)
问题描述
我想知道如何创建图像滑块,就像我们用来浏览不同 iOS 应用程序中的图片一样,例如在照片或 Airbnb 应用程序中.
I'm wondering how to create image slider like those that we are using to look through pictures in different iOS apps, for example in Photos or Airbnb app.
它是一个包含图像视图的页面控制器吗?或者它是一个uicollectionview?还是只是一个滚动视图?
Is it a page controller with image views in it? Or is it a uicollectionview? Or is it just a scrollview?
我已经搜索了很多,虽然我在 github 上找到了一个很好的库,但我没有找到任何人人都使用的通用解决方案.
I've searched for this a lot, and though I found a good library on github, I haven't found any common solution, that everybody uses.
这是 airbnb 应用程序中图像滑块的示例.
This is an example of image slider in airbnb app.
推荐答案
试试这个代码来使用 UIScrollView
创建 Image Slider Show.
Try this code to create Image Slider Show Using UIScrollView
.
int x=0;
self.scrollView.pagingEnabled=YES;
NSArray *image=[[NSArray alloc]initWithObjects:@"1.png",@"2.png",@"3.png", nil];
for (int i=0; i<image.count; i++)
{
UIImageView *img=[[UIImageView alloc]initWithFrame:CGRectMake(x, 0,[[UIScreen mainScreen] bounds].size.width, self.scrollView.frame.size.height)];
img.image=[UIImage imageNamed:[image objectAtIndex:i]];
x=x+[[UIScreen mainScreen] bounds].size.width;
[self.scrollView addSubview:img];
}
self.scrollView.contentSize=CGSizeMake(x, self.scrollView.frame.size.height);
self.scrollView.contentOffset=CGPointMake(0, 0);
这篇关于如何在 iOS 中创建图像滑块?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 iOS 中创建图像滑块?
基础教程推荐
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01