比如说QQ登陆头像显示出来的就是圆形的,但实际上它的图片并非就是圆形,而是通过对layer层进行绘制而成的。说到layer每个控件都会有layer层属性所以可以把任意的控件都可以设置成圆形,或是椭圆型看项目需要而定
UIImageView *imageView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"头像.png"]]...
分类:
移动开发 时间:
2014-11-20 18:53:31
阅读次数:
149
#import@interface ViewController : UIViewController@property (retain, nonatomic) IBOutlet UIImageView *imgV;- (IBAction)openCamera:(id)sender;- (IBAct...
分类:
移动开发 时间:
2014-11-20 06:48:42
阅读次数:
257
#import "QYViewController.h"
@interface
QYViewController ()UIScrollViewDelegate>
{
UIImageView *_imageView;
}
@end
@implementation QYViewController
- (void)viewDidL...
分类:
其他好文 时间:
2014-11-19 11:19:17
阅读次数:
179
#import "QYViewController.h"
@interface
QYViewController ()UIScrollViewDelegate>
{
UIImageView *_imageView;
}
@end
@implementation QYViewController
- (void)viewDidL...
分类:
其他好文 时间:
2014-11-19 01:21:03
阅读次数:
152
在iOS开发中,我们一定会用的类似欢迎界面的东西。其中需要翻页和下面的提示小圆点。在iOS的实现中,翻页效果是使用UIScrollView,而UIPageView只是添加下面的提示小圆点而已。
下面我贴出具体实现比较简单:
//
// ADView.m
// Ting3
//
// Created by 杜甲 on 11/17/14.
// Copyright (c) 2014 杜甲....
分类:
移动开发 时间:
2014-11-18 14:44:17
阅读次数:
227
很多时候我们只能得到一个URL,然后需要构建一个UIImage。
通常情况下,我们一般都是通过SDWebImage来直接构建UIImageVIew的image,如何用URL直接构建UIImage呢?
如下转换:
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:urlStr]];
button.backgro...
分类:
移动开发 时间:
2014-11-18 13:31:30
阅读次数:
164
效果图:代码:- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. UIImageView *imageView=[[UIImageView ...
分类:
其他好文 时间:
2014-11-17 12:06:39
阅读次数:
159
从UIImageView和UIButton的下面几方面来分析:1.显示图片1> UIImageView只能显示一种图片(图片默认会填充整个UIImageView,当然可以设置各种填充方式) 方法:image\setImage:2> UIButton能显示2种图片 * 背景 (背景会填充整个UIBut...
分类:
其他好文 时间:
2014-11-13 14:14:42
阅读次数:
123
#pragma 画虚线 UIImageView *imageView1 = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 320, 640)]; imageView1.backgroundColor = [UIColor redColor];....
分类:
移动开发 时间:
2014-11-13 12:35:30
阅读次数:
209
[UIImageView sd_setImageWithURL:placeholderImage:]: unrecognized selector sent to instance...
分类:
Web程序 时间:
2014-11-07 16:59:07
阅读次数:
464