iOS知识点大纲Xcode使用 1. 创建UI工程基本控件 2. UILabel标签 3. UIButton按钮 项目: 计算器项目 4. UIImageView(UIImage) 项目: 人人界面 5. UIView 视图+触摸 项目: 人人界面 6. UITextFi...
分类:
移动开发 时间:
2014-06-21 14:11:14
阅读次数:
288
一》.UIImageView和UIButton对比显示图片1> UIImageView只是一种图片(图片默认会填充整个UIImageView) image\setImage:2> UIButton能显示2种图片* 背景 (背景会填充整个UIButton) setBackgroundImage:for...
分类:
其他好文 时间:
2014-06-19 06:45:33
阅读次数:
204
UIImage这个对象是swift中的图像类,可以使用UIImageView加载显示到View上。以下是UIImage的构造函数: init(named name: String!) -> UIImage // load from main bundle init(named name:...
分类:
其他好文 时间:
2014-06-18 12:49:16
阅读次数:
244
使用UIImagePickerControlle这个类,用它来打开摄像头和本地照片库。找到一个好的办法也是比较简单的方法来将选择好的图片显示我们想要的UIImageView上...
分类:
其他好文 时间:
2014-06-18 11:37:58
阅读次数:
182
1.增加一个旋转动画 UIImage *loadImage = [UIImageimageNamed:@"detailLoad.png"]; UIImageView *loadImageView = [[[UIImageViewalloc]initWithImage:loadImage ]auto....
分类:
其他好文 时间:
2014-06-17 20:03:06
阅读次数:
210
//测试图片能否显示-(void)showMyimgview{ UIImageView *backgroundImg=[[UIImageView alloc]init]; backgroundImg.frame =CGRectMake(50, 200, 200, 100); b...
分类:
移动开发 时间:
2014-06-17 15:41:03
阅读次数:
216
在iOS中, 界面刷新在主线程中进行,
这导致NSURLSession远程下载图片使用UIImageView直接设置Image并不能及时刷新界面.下面的代码演示了如何使用performSelectorOnMainThread:
withObject: waitUntilDone: 方法来及时刷新图片...
分类:
移动开发 时间:
2014-06-11 21:53:26
阅读次数:
454
iOS: 学习笔记, 使用performSelectorOnMainThread及时刷新UIImageView...
分类:
移动开发 时间:
2014-06-08 16:15:07
阅读次数:
315
1、首先加入ASI开源库
2、
WebImageView.h
#import
#import "ASIHTTPRequest.h"
@interface WebImageView : UIImageView
- (void)setImageURL:(NSURL *)url;
@end
WebImageView.m
#import "WebImageView.h"
#import "ASIHTTPRequest.h"
...
分类:
移动开发 时间:
2014-06-08 10:54:39
阅读次数:
217
1、在自定义tabBar中,往tabBar中添加按钮的时候,默认情况下会在按钮的前面和后面添加UITabBarBackgroundView和UIImageView,导致子控件会增加两个,在自动布局中就会出现排版错误。解决办法:让自定义的tabBar继承UIView。2、对于tabBarItem,要想...
分类:
其他好文 时间:
2014-06-07 17:03:56
阅读次数:
303