IOS--UIImageView的使用方法//初始化UIImageView *imageView=[[UIImageView alloc]initWithFrame:CGRectMake(100,200,120,120)];//需要设置图片 UIImage第一种:[imageView setImag...
分类:
移动开发 时间:
2014-11-29 21:42:01
阅读次数:
1168
UIButton 一个控件 实现 左图标右文本的效果如图,我们要实现一个 左边图标右边文本的效果,一般 可以考虑是 UIImageView + UILabel不过,其实一个UIButton就可以搞定了代码: UIButton *tBtn = [UIButton buttonWithType:U...
分类:
其他好文 时间:
2014-11-27 15:47:36
阅读次数:
197
UIImageView *svRect; UIImage *backgroundImage = [UIImage imageNamed:@"bg.png"]; backgroundImage = [backgroundImage resizableImageWithCapInsets:...
分类:
移动开发 时间:
2014-11-26 16:17:21
阅读次数:
158
我们都知道在ios中,每一个UIImageView都有他的frame大小,但是如果图片的大小和这个frame的大小不符合的时候会怎么样呢?在默认情况,图片会被压缩或者拉伸以填满整个区域。通过查看UIView的属性可以知道,view的contentMode属性可以用来控制图片的显示情况。下面的设置可以...
分类:
其他好文 时间:
2014-11-26 10:56:55
阅读次数:
188
一开始用VFL语言都是这样实现自动布局的,一两个控件还好,多几个控件简直不能忍。 _backgroundImageView = [[UIImageView alloc] init];
_backgroundImageView.backgroundColor = [UIColor clearColor];
_backgroundImageView.translatesAutor...
分类:
移动开发 时间:
2014-11-25 23:49:15
阅读次数:
247
记笔记。。。
初始化 - (id)initWithImage:(UIImage *)image;
图片可以用来做序列帧动画 (1帧1帧展示 )主要用到一下集中方法
@property(nonatomic,copy) NSArray *animationImages; 数组中放的是UIImage对象
@property(nonatomic) NSInteger an...
分类:
其他好文 时间:
2014-11-25 23:42:17
阅读次数:
182
如何实现聊天软件的图片显示的剪裁后的气泡呢 ? Objective-C: ? -?(void)viewDidLoad?{
????[super?viewDidLoad];
????
????UIImageView?*ImageView01?=?[[UIImageView?alloc]?init];
??...
分类:
移动开发 时间:
2014-11-25 09:25:32
阅读次数:
239
1.NSBundle1> 一个NSBundle代表一个文件夹,利用NSBundle能访问对应的文件夹2> 利用mainBundle就可以访问软件资源包中的任何资源3> 模拟器应用程序的安装路径/Users/aplle/资源库/Application Support/iPhone Simulator/...
分类:
移动开发 时间:
2014-11-25 00:12:25
阅读次数:
240
如何实现聊天软件的图片显示的剪裁后的气泡呢
Objective-C:- (void)viewDidLoad {
[super viewDidLoad];
UIImageView *ImageView01 = [[UIImageView alloc] init];
[ImageView01 setFrame:CGRectMake(90, 190, ...
分类:
移动开发 时间:
2014-11-24 22:29:37
阅读次数:
295
图形上下文,有开启UIGraphicsBeginImageContextWithOptions,获取UIGraphicsGetCurrentContext和关闭UIGraphicsEndPDFContext等主要操作,有开启就要由关闭。其他图片和文字,是直接用drawInRect画到上下文中,只有截屏不同,截屏实质上是对view的图层layer进行操作,用得时渲染renderInContext,哪个layer要渲染,就由谁来调用这个方法。...
分类:
移动开发 时间:
2014-11-21 14:22:19
阅读次数:
365