前言:好久没写博客,今天来一波。我在实际项目开发中,会遇到这样功能需求:我已经搭好了iOS的UI界面,但是很多界面的子View用了UIView,然后这些UIView中用了UILabel和UIImageView,然后接着需求要这些View能够有点击事件,比如一点击就跳转到某个控制器。一开始懵逼了,难道 ...
分类:
移动开发 时间:
2016-06-06 06:43:38
阅读次数:
201
了解 animateWithDuration方法 制作动画变得不值钱 代码创建一个UIImageView 后加入self.view 容器中 调用点击屏幕touchesBegan 方法执行动画 #import "ViewController.h" @interface ViewController ( ...
分类:
其他好文 时间:
2016-06-05 19:59:49
阅读次数:
139
一.UIImageView Gif 动画: 其实就是将一组图片放到UIImageView中,实现图片的快速切换的过程,程序比较简单就不多说了. //设置gif图片的播放速率 self.imageView.animationDuration = 1.0f; //设置gif图片数组 self.image ...
分类:
移动开发 时间:
2016-06-04 16:17:46
阅读次数:
433
UIView和CALayer的选择 如显示图片的层可以用一个UIImageView来实现。 既然CALayer和UIView都能实现相同的显示效果,那究竟该选择谁好呢? 其实,对比CALayer,UIView多了一个事件处理的功能。也就是说,CALayer不能处理用户的触摸事件,而UIView可以。 ...
分类:
其他好文 时间:
2016-06-03 21:11:05
阅读次数:
158
typedef NS_ENUM(NSInteger, UIViewContentMode) { UIViewContentModeScaleToFill, //为将图片按照整个区域进行拉伸(会破坏图片的比例)【改变内容的高宽比例,缩放内容,UIView中完整显示内容,填满UIView】 UIView ...
分类:
其他好文 时间:
2016-06-01 15:38:49
阅读次数:
1165
在xib拖拽控件的界面给view添加背景 UIImageView *imageView = [[UIImageView alloc]initWithFrame:self.view.bounds]; imageView.image = [UIImage imageNamed:@"51670.jpg"] ...
分类:
其他好文 时间:
2016-05-31 15:40:43
阅读次数:
136
1.代码如下 (注释都有) - (void)viewDidLoad { [super viewDidLoad]; UIImageView * bigImageView = [[UIImageView alloc]initWithFrame:CGRectMake(100, 100, 100, 100) ...
分类:
其他好文 时间:
2016-05-31 12:22:18
阅读次数:
118
1.CABasicAnimation动画 //设置全局变量图片 @property (nonatomic,strong) UIImageView *eyeImage; //设置圆角(注意:光设置上边一句代码是实现不了效果的,下边的masksToBounds这个属性影响layer层的阴影效果) sel ...
分类:
移动开发 时间:
2016-05-30 21:28:37
阅读次数:
172
一,效果图。 二,工程图。 三,代码。 RootViewController.h #import <UIKit/UIKit.h> @interface RootViewController : UIViewController { NSTimer *timer; UIImageView *image ...
分类:
其他好文 时间:
2016-05-30 10:01:49
阅读次数:
219
在手机里面经常可以看到模糊效果,比如说控制中心。 那么这种效果怎么去实现的呢,一般有一下几种办法。 1.CoreImage 2.vImage(UIImageView+Effective) 3.GPUImage 4.UIVisualEfftiveView 下面来说说这几种方法的使用方法: 一、Core ...
分类:
移动开发 时间:
2016-05-28 12:54:53
阅读次数:
648