+ (UIImage *) imageWithView:(UIView *)view
{
UIGraphicsBeginImageContextWithOptions(view.bounds.size, view.opaque, 0.0f);
[view drawViewHierarchyInRect:view.bounds afterScreenUpdates:NO];
...
分类:
其他好文 时间:
2014-12-19 20:49:11
阅读次数:
153
我们可以通过基类设置BackButton的样式,也可以设置LeftButton然后隐藏BackButton,但是那样的话手势返回就没了。现在找到的方案是:设置返回按钮的背景图片为自定义的图片,为了解决会显示Back字样的问题,设置Title偏移到屏幕不可见的位置即可。完整代码如下: UIImage *backImage = [UIImage imageNamed:@"backNor"];
...
分类:
移动开发 时间:
2014-12-19 14:31:11
阅读次数:
175
一 UIImageView 简介 UIImageView是显示图片的控件,显示图片时,首先需要把图片加载到UIImage控件中,然后根据UIImage控件,设置到UIImageView相对应的属性中。 1 创建UIImage对象 //使用应用程序中图片文件创建...
分类:
移动开发 时间:
2014-12-18 07:00:43
阅读次数:
234
http://blog.csdn.net/justinjing0612/article/details/8751269iOS自带的提供了一个API如下[html]view plaincopyNSData*UIImageJPEGRepresentation(UIImage*image,CGFloatc...
分类:
移动开发 时间:
2014-12-16 18:56:58
阅读次数:
167
UIImageView?*loginNameFieldLeftView?=?[[UIImageView?alloc]initWithFrame:CGRectMake(5,?0,?15,?15)];
loginNameFieldLeftView.image?=?[UIImage?imageNamed:@"username.png"];
UIView?*leftPaddin...
分类:
其他好文 时间:
2014-12-16 17:19:28
阅读次数:
154
备注:CALayer是定义在QuartzCore框架中的;CGImageRef、CGColorRef两种数据类型是定义在CoreGraphics框架中的;UIColor、UIImage是定义在UIKit框架中的其次,QuartzCore框架和CoreGraphics框架是可以跨平台使用的,在iOS和...
分类:
其他好文 时间:
2014-12-16 14:44:53
阅读次数:
219
1、先导入#import 框架,并在工程中导入该框架2、- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { self.imageView.image = [UIImage imageNamed:[NSString...
分类:
其他好文 时间:
2014-12-16 13:15:53
阅读次数:
135
修改UIImage大小修改UISlider的最大值和最小值图片的时候,发现需要修改图片的大小,否则会导致UISlider变形。目前苹果还不支持直接修改UIImage类的大小,只能修改UIImageView的大小。所以只能通过写方法的方式来实现修改图片。如下: //UIImage.h#import @...
分类:
其他好文 时间:
2014-12-16 11:16:47
阅读次数:
177
UIScrollview一直显示滚动条,使用UIImageView自定义滚动条
@interface ViewController ()UIScrollViewDelegate>
{
UIScrollView *backScrollView;
UIImageView *scrollIndexerImageView;
}
@end
...
分类:
其他好文 时间:
2014-12-15 19:05:23
阅读次数:
223
//头文件 #import?<UIKit/UIKit.h>
@interface?UIImage?(Extension)
//传入图片的name.然后返回一个拉伸后的图片(新图片)
+(UIImage?*)resizableImage:(NSString?*)name;
@end //实现 #import?"UIImage+Ex...
分类:
移动开发 时间:
2014-12-13 20:38:09
阅读次数:
161