#if 0 NSString *path = [[NSBundle mainBundle] resourcePath ]; NSString *imagePath = [NSString stringWithFormat:@"%@/qq.png",path]; UIImage *image = [[ ...
分类:
其他好文 时间:
2016-04-23 22:48:04
阅读次数:
192
本课主要介绍UIImageview、NSTimer的使用。并介绍了一种动画实现方式。 本教程摒弃枯燥的语法和知识解说。全是有趣有料的项目实战! 视频优酷链接:v.youku.com/v_show/id_XNzI4NDkxNjg0.html 高清视频下载:pan.baidu.com/s/1mgp3kP ...
分类:
移动开发 时间:
2016-04-23 09:07:19
阅读次数:
181
[self createCustomTabBar]; -(void)createCustomTabBar{ //创建一个UIImageView,作为底图 UIImageView *bgView = [[UIImageView alloc] initWithFrame:CGRectMake(0,[UI ...
分类:
其他好文 时间:
2016-04-22 18:15:37
阅读次数:
136
static CGRect oldframe; -(void)showImage:(UIImageView *)avatarImageView{ UIImage *image=avatarImageView.image; UIWindow *window=[UIApplication sharedA ...
分类:
其他好文 时间:
2016-04-21 13:25:08
阅读次数:
151
做购物应用的时候,有点时候需要这样一个动画 我照着动画效果来实现一下看看 storyboard中拖入一个UIButton和一个UIImageView 代码如下: 这么做就完美了,那个判断i和j相等移除layer的做法让我想了很久(呵呵,如果你想到了更好的办法也可以告诉我). 其实我在iPad上做的时 ...
分类:
其他好文 时间:
2016-04-20 16:27:08
阅读次数:
152
copy from CPLASF_lixj http://blog.csdn.net/qijianli/article/details/8152726 项目中经常会遇到Button上同时显示图片和文字,且图片和文字上下排列,同事用到的方法是在UIButton上添加一个UIImageView和UILa ...
分类:
其他好文 时间:
2016-04-20 11:32:25
阅读次数:
126
摘要 本文主要介绍核iOS中的动画:核心动画Core
Animation, UIView动画, Block动画, UIImageView的帧动画.
核心动画Core Animation UIView动画 Block动画 UIImageView的帧动画
目录[-]
iOS中的动画
Core Animation
CAAnimation:
CAProperty...
分类:
移动开发 时间:
2016-04-16 19:32:04
阅读次数:
273
#pragma mark - 手势 总共有五种手势 分别为 Tap点击 Pan拖拽 LongPress长时间按压 Pinch捏合手势 rotation旋转 1. 定义成员变量 UIImageView *_imgView; 定义UIImageView, 响应手势方法时调用 CGPoint origin ...
分类:
其他好文 时间:
2016-04-16 13:48:56
阅读次数:
153
UIImageView *backImageView = [[UIImageView alloc]initWithFrame:CGRectMake(0, self.view.frame.size.height-UITABBAR_HEIGHT-216-39, 320, 43) ]; [backImag ...
分类:
其他好文 时间:
2016-04-15 15:28:55
阅读次数:
124
SDWebImage托管在github上。https://github.com/rs/SDWebImage 这个类库提供一个UIImageView类别以支持加载来自网络的远程图片。具有缓存管理、异步下载、同一个URL下载次数控制和优化等特征。 UIImageView+WebCacha 的 categ ...
分类:
Web程序 时间:
2016-04-15 11:44:15
阅读次数:
189