UIButton作为最常用的界面元素,其高效率的用户交互,常常在众多元素中,作为首选,其他许多细小的设置,又容易忘记,为了自己以后可以方便查找,整理笔记如下://
UIButton中内置了UIImageView和UILable两个属性,这两个属性都是read-only,修改只能通过SET方法来处.....
分类:
其他好文 时间:
2014-06-04 15:41:25
阅读次数:
231
UIkit框架下的几个基本控件,UIButton,UITextField,UILabel,UIImageView,UIScrollView,UITableView,UITableViewCell,UIPageControl;
他们的继承关系,UILabel,UIImageView,UIScro...
分类:
移动开发 时间:
2014-06-02 00:10:21
阅读次数:
361
#import
"LoadInternetImageViewController.h"@interface LoadInternetImageViewController
()@property (weak, nonatomic) IBOutlet UIImageView *imageView;@e...
分类:
其他好文 时间:
2014-05-30 20:28:32
阅读次数:
347
1 UIImage *image = [UIImage
imageNamed:tempAppInfo.icon];2 UIImageView *appIcon = (UIImageView *) [appView
viewWithTag:0]; 3 appIcon.image = image;每次执...
分类:
其他好文 时间:
2014-05-26 12:35:45
阅读次数:
226
ios开发UI基础—在ImageView中添加按钮以及Tag的参数说明一、tag参数一个视图通常都只有一个父视图,多个子视图,在开发中可以通过使用子视图的tag来取出对应的子视图。方法为Viewwithtag:提示点:在xib中如果想要通过tag参数获取对应的控件(属性),不要把tag的参数设置为0...
分类:
移动开发 时间:
2014-05-25 21:59:31
阅读次数:
299
本文转载值至:http://www.overcode.hk/?p=449SDWebImage是一个很厉害的图片缓存的框架。既ASIHttp+AsyncImage之后,我一直使用AFNetworking集成的UIImageView+AFNetworking.h,但后者对于图片的缓存实际应用的是NSUR...
分类:
Web程序 时间:
2014-05-23 11:29:12
阅读次数:
250
今天写程序,遇到了crash,在界面初始化时不会有,想切换到别的tab页就报错了。主要内容如下:Cannot
find an outgoing row head for incoming head UIImageView:0x156caec0.Width{id:
103}, which should...
分类:
移动开发 时间:
2014-05-23 06:48:54
阅读次数:
280
利用CAShapeLayer可以制作出任意的几何图形,把它作为UIImageView的遮罩,达到把图片做成圆形效果。
imgView = [[UIImageView alloc]initWithFrame:CGRectMake(10, 35, 80, 80)];
imgView.image = [UIImage imageNamed:@"ma.jpg"];
UIBez...
分类:
移动开发 时间:
2014-05-22 22:51:33
阅读次数:
485
1> 使用场合* UIImageView: 如果仅仅是显示图片,不需要监听图片的点击*
UIButton: 既要显示图片,又要监听图片的点击2> 相同:能显示图片3> 不同点* UIButton能处理点击事件,
UIImageView不能处理点击事件* UIButton既能显示图片, 又能显示文字*...
分类:
其他好文 时间:
2014-05-22 16:02:38
阅读次数:
198
UIImage *image01 = [UIImage imageNamed:@"002.png"];//原图
NSData *dataOf02 =UIImageJPEGRepresentation(image01, 0.5);//压缩图片内容,不影响图片的size,得到一个原大小,但更模糊的图片。
UIImage *image02 = [UIImage imageWit...
分类:
其他好文 时间:
2014-05-21 08:14:49
阅读次数:
315