1、保存图片和方向 [userDefault setObject:UIImagePNGRepresentation(image) forKey:udUserImage]; [userDefault setObject:[NSNumber numberWithInteger:image.imageOr ...
分类:
移动开发 时间:
2017-05-27 15:21:54
阅读次数:
273
点击要切屏时点用此方法获取图片 image 极为切屏图片 - (UIImage *)captureImageFromView:(UIView *)view { CGRect screenRect = [view bounds]; UIGraphicsBeginImageContext(screenR ...
分类:
移动开发 时间:
2017-05-26 13:20:46
阅读次数:
230
这个需求其实是有的,比如QQ聊天界面里面发送的信息,可以用label来显示文字(也可以用button显示),但是有时候用户可能会发送图片。如果能让Label遇到文字就显示文字,遇到图片就显示图片就好了。可能有的人会说用Quartz2D,直接在Label的drawinrect 里面用上下文画上去。但这 ...
分类:
其他好文 时间:
2017-05-25 16:19:09
阅读次数:
207
先上图: 这个UIView能够这样写: -(id)initWithFrame:(CGRect)frame backImage:(UIImage*)image msgStr:(NSString*)txt txtColor:(UIColor*)color{ self = [super initWithF ...
分类:
移动开发 时间:
2017-05-24 21:09:07
阅读次数:
227
UIImage @selector(imageWithContentsOfFile:) iOS7:当从子bundle中读取图片时,文件名称不能省略@2x.png; iOS8:能够省略 iOS7:当从子bundle中读取图片时,文件名称不能省略@2x.png; iOS8:能够省略 ...
分类:
移动开发 时间:
2017-05-24 10:11:13
阅读次数:
150
// 等比例缩放图片 /** 方法作用:按比例缩放,size 是你要把图显示到 多大区域 参数: sourceImage: 图片UIImage targetSize: 缩放宽高 调用: UIImage *newImage = [self imageCompressFitSizeScale:image... ...
分类:
其他好文 时间:
2017-05-23 20:28:25
阅读次数:
179
思路:将UIImage转换成NSData,然后插入到NSMutableDictionary中。读取时,用NSData读出来,然后再转换成UIImage -存储 UIImage *image = [self getPicture: id]; NSData *imageData = UIImagePNG ...
分类:
移动开发 时间:
2017-05-20 15:54:15
阅读次数:
248
系统方式: //1.设置导航栏背景图片 [self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault]; self.naviga ...
分类:
移动开发 时间:
2017-05-19 23:48:22
阅读次数:
202
- (void)viewWillAppear:(BOOL)animated { //设置导航栏背景图片为一个空的image,这样就透明了 [self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init ...
分类:
移动开发 时间:
2017-05-17 12:09:12
阅读次数:
314
在iOS开发中,我们一定会用的类似欢迎界面的东西。当中须要翻页和以下的提示小圆点。在iOS的实现中,翻页效果是使用UIScrollView。而UIPageView仅仅是加入以下的提示小圆点而已。 以下我贴出详细实现比較简单: // // ADView.m // Ting3 // // Created ...
分类:
移动开发 时间:
2017-05-17 10:14:02
阅读次数:
198