代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
ObjC
】
实现图片Carousel效果
作者:
万鑫
/ 发布于
2014/11/15
/
525
Carousel效果也叫Cover Flow效果,就是图片以3D的形式进行左右滑动。
// // Carousel.h // #import <UIKit/UIKit.h> @interface Carousel : UIView <UIScrollViewDelegate> { UIPageControl *pageControl; NSArray *images; } @property (nonatomic, retain) UIPageControl *pageControl; @property (nonatomic, retain) NSArray *images; - (void)setup; @end // // Carousel.m // #import "Carousel.h" @implementation Carousel @synthesize pageControl; @synthesize images; #pragma mark - Override images setter - (void)setImages:(NSArray *)newImages { if (newImages != images) { [newImages retain]; [images release]; images = newImages; [self setup]; } } #pragma mark - Carousel setup - (void)setup { UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:self.frame]; [scrollView setDelegate:self]; [scrollView setShowsHorizontalScrollIndicator:NO]; [scrollView setPagingEnabled:YES]; [scrollView setBounces:NO]; CGSize scrollViewSize = scrollView.frame.size; for (NSInteger i = 0; i < [self.images count]; i++) { CGRect slideRect = CGRectMake(scrollViewSize.width * i, 0, scrollViewSize.width, scrollViewSize.height); UIView *slide = [[UIView alloc] initWithFrame:slideRect]; [slide setBackgroundColor:[UIColor colorWithRed:0 green:0 blue:0 alpha:0]]; UIImageView *imageView = [[UIImageView alloc] initWithFrame:self.frame]; [imageView setImage:[UIImage imageNamed:[self.images objectAtIndex:i]]]; [slide addSubview:imageView]; [imageView release]; [scrollView addSubview:slide]; [slide release]; } UIPageControl *tempPageControll = [[UIPageControl alloc] initWithFrame:CGRectMake(0, scrollViewSize.height - 20, scrollViewSize.width, 20)]; [self setPageControl:tempPageControll]; [tempPageControll release]; [self.pageControl setNumberOfPages:[self.images count]]; [scrollView setContentSize:CGSizeMake(scrollViewSize.width * [self.images count], scrollViewSize.height)]; [self addSubview:scrollView]; [scrollView release]; [self addSubview:self.pageControl]; } #pragma mark - UIScrollViewDelegate - (void)scrollViewDidScroll:(UIScrollView *)scrollView { CGFloat pageWidth = scrollView.frame.size.width; int page = floor((scrollView.contentOffset.x - pageWidth / 2) / pageWidth) + 1; [self.pageControl setCurrentPage:page]; } #pragma mark - Cleanup - (void)dealloc { [pageControl release]; [images release]; [super dealloc]; } @end // // ViewController.m // SimpleCarousel // #import "ViewController.h" #import "Carousel.h" @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // Initialize carousel object with frame size of images Carousel *carousel = [[Carousel alloc] initWithFrame:CGRectMake(0, 0, 320, 205)]; // Add some images to carousel, we are passing autoreleased NSArray [carousel setImages:[NSArray arrayWithObjects:@"image1.jpg", @"image2.jpg", @"image3.jpg", nil]]; // Add carousel to view [self.view addSubview:carousel]; // Cleanup [carousel release]; } @end
试试其它关键字
Carousel
Carousel效果
同语言下
.
根据生日计算星座
.
精简的实现一个内存池
.
iOS索引搜索核心代码
.
iOS 搜索框
.
文件操作
.
UIWebView 加载本地网页
.
取消导航条对视图的影响
.
利用终端显示 隐藏文件
.
更改导航条背景颜色
.
iOS 字体斜体
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
万鑫
贡献的其它代码
(
28
)
.
如何判断设备处于静音模式
.
播放简短的音乐
.
iOS实现在后台播放音乐
.
判断用户是否禁止该App使用设备麦克风
.
播放短暂的提示声音
.
自动关闭的Alert窗口
.
UIActionSheet动态添加按钮
.
生成ProgressView
.
在UIScrollView的delegate方法判断滚动快慢
.
判断scrollView是否滑动到底部
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3