热门标签 | HotTags
当前位置:  开发笔记 > IOS > 正文

IOS开发之操作图库自定义控制器

这篇文章主要介绍了IOS开发之操作图库自定义控制器的相关资料,需要的朋友可以参考下

IOS 开发之操作图库自定义控制器

步骤如下:

新建此类的代理属性必须遵守的协议:

新建PhotoButtonDelegate.h如下:

// 
// PhotoButtonDelegate.h 
// 作业整理 
// 
// Created by apple on 15/9/16. 
// Copyright (c) 2015年 LiuXun. All rights reserved. 
// 
 
#import  
@class ImageAndPhotos; 
@protocol PhotoButtonDelegate  
 
-(void) setPhotoButton:(ImageAndPhotos *) imgAndP; 
@end 

新建此类如下:

编辑ImageAndPhotos.h如下:

// 
// ImageAndPhotos.h 
// 作业整理 
// 
// Created by apple on 15/9/16. 
// Copyright (c) 2015年 LiuXun. All rights reserved. 
// 
 
#import  
#import "PhotoButtonDelegate.h" 
@class UIBaseScrollView; 
@interface ImageAndPhotos : NSObject  
 
@property (nonatomic, strong) UIViewController *controller; 
@property (nonatomic, strong) UIImage *img; 
@property (nonatomic, strong) UIButton *btn; 
@property (nonatomic, weak) id delegate; 
 
 
-(id)initWithControler:(UIViewController *) crtler AndButton:(UIButton *) button; 
@end 

编辑ImageAndPhotos.m如下:

// 
// ImageAndPhotos.m 
// 作业整理 
// 
// Created by apple on 15/9/16. 
// Copyright (c) 2015年 LiuXun. All rights reserved. 
// 
 
#import "ImageAndPhotos.h" 
 
@implementation ImageAndPhotos 
 
-(id)initWithControler:(UIViewController *) crtler AndButton:(UIButton *) button 
{ 
  if (self = [super init]) { 
    self.cOntroller= crtler; 
    self.btn = button; 
    [self CameraEvent]; 
  } 
  return self; 
} 
 
 
-(void)CameraEvent 
{ 
  [self.btn addTarget:self action:@selector(showActionSheet) forControlEvents:UIControlEventTouchUpInside]; 
} 
 
-(void) showActionSheet 
{ 
  UIActionSheet *actiOnSheet= [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonTitle:@"取消" destructiveButtonTitle:nil otherButtonTitles:@"拍照",@"我的相册", nil nil]; 
  [actionSheet showInView:self.controller.view]; 
 } 
 
// 实现UIActionSheetDelegate协议中监听按钮的方法 
-(void) actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex 
{ 
  if (buttOnIndex== 0) { 
    [self addCamera]; 
  } 
  else if(buttOnIndex== 1) 
  { 
    [self addPhoto]; 
  } 
   
} 
 
-(void)addCamera 
{ 
  // 判断是否可以打开一个相机 
  if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) { 
    // 创建一个调出拍照的控制器 
    UIImagePickerController *picker = [[UIImagePickerController alloc] init]; 
    picker.delegate = self; 
    picker.allowsEditing = YES; 
    // 摄像头 
    NSLog(@"++++addCamera++++"); 
    picker.sourceType = UIImagePickerControllerSourceTypeCamera; 
    [self.controller presentViewController:picker animated:YES completion:^{ 
   
    }]; 
  } 
  else 
  { 
    [self showAlertView]; 
  } 
} 
-(void) addPhoto 
{   // 相册可以用模拟器打开,但是相机不可以用模拟器打开 
  if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]) { 
    UIImagePickerController *picker = [[UIImagePickerController alloc] init]; 
     
    picker.delegate = self; 
    picker.allowsEditing = YES; // 是否可以编辑 
     
    // 打开相册选择相片 
    picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary; //表示管理图库 
    [self.controller presentViewController:picker animated:YES completion:nil]; 
     
  } 
  else 
  { 
    [self showAlertView]; 
  } 
   
} 
 
-(void)showAlertView 
{ 
  UIAlertView *alert =[[UIAlertView alloc] initWithTitle:@"提示" message:@"你没有摄像头" delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil nil]; 
  [alert show]; 
} 
 
// 代理协议中的方法 
// 拍摄完成后,其实是选中图片后的方法要执行的方法,如果是照相的话则选中拍照后的相片 
-(void) imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info 
{ 
  // 得到图片 
  self.img = [info objectForKey:UIImagePickerControllerEditedImage]; 
  // 图片存入图库 
  if (picker.sourceType == UIImagePickerControllerSourceTypeCamera) { 
    UIImageWriteToSavedPhotosAlbum(self.img, nil, nil, nil); // 如果是相机 
  } 
   
  [self.controller dismissViewControllerAnimated:YES completion:^{ 
    if ([self.delegate respondsToSelector:@selector(setPhotoButton:)]) { 
      [self.delegate setPhotoButton:self]; 
    } 
  }]; 
   
} 
 
//选中图片点击cancel按钮后执行的方法 
-(void)imagePickerControllerDidCancel:(UIImagePickerController *)picker 
{ 
   
  [self.controller dismissViewControllerAnimated:YES completion:nil]; 
} 
 
 
@end 

此类新建完成,在自定义控件中的应用如下:(此自定义控件是一个上传图片的scrollVIew)

新建自定义控件类编辑UIBaseScrollView.h如下

// 
// UIBaseScrollView.h 
// 作业整理 
// 
// Created by apple on 15/9/16. 
// Copyright (c) 2015年 LiuXun. All rights reserved. 
// 
 
#import "UIBaseVIew.h" 
#import "ImageAndPhotos.h" 
 
 
@interface UIBaseScrollView : UIBaseVIew 
 
@property (nonatomic, strong) NSMutableArray *arrayImgs; 
@property (nonatomic, strong) UIScrollView *scroll; 
@property (nonatomic, strong) ImageAndPhotos *imgChange; 
@property (nonatomic, strong) UIButton *btnImg; 
@property (nonatomic, strong) UIImageView *imgV; 
-(id)initWithFrame:(CGRect)frame CurrenContr:(UIViewController *) crtl; 
 
@end 
编辑定义控件的.m文件如下:

[objc] view plain copy
// 
// UIBaseScrollView.m 
// 作业整理 
// 
// Created by apple on 15/9/16. 
// Copyright (c) 2015年 LiuXun. All rights reserved. 
// 
 
#import "UIBaseScrollView.h" 
 
@implementation UIBaseScrollView 
 
-(id)initWithFrame:(CGRect)frame CurrenContr:(UIViewController *) crtl 
{ 
  if (self = [super initWithFrame:frame]) { 
    self.scroll = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)]; 
     
    self.btnImg = [[UIButton alloc] initWithFrame:CGRectMake(10, 10, frame.size.height-20, frame.size.height-20)]; 
    [self.btnImg setImage:[UIImage imageNamed:@"tizhong_photo_increase_bj"] forState:UIControlStateNormal]; 
     
    self.imgChange = [[ImageAndPhotos alloc] initWithControler:crtl AndButton:self.btnImg]; 
    self.scroll.showsHorizOntalScrollIndicator= YES; 
    self.imgChange.delegate = self; 
    [self.scroll addSubview:self.btnImg]; 
    [self addSubview:self.scroll]; 
  } 
  return self; 
} 
 
-(void)setPhotoButton:(ImageAndPhotos *)imgAndP 
{ 
  NSLog(@"%@&&&&&&&&&",self.imgChange.img); 
  if (imgAndP.img) { 
    self.imgV =[[UIImageView alloc] initWithFrame: self.btnImg.frame ]; 
    self.imgV.image = imgAndP.img; 
    self.imgV.backgroundColor = [UIColor yellowColor]; 
    [self.scroll addSubview:self.imgV]; 
    self.btnImg.frame = CGRectMake(CGRectGetMaxX(self.imgV.frame)+10, self.imgV.frame.origin.y, self.imgV.frame.size.width, self.imgV.frame.size.height); 
    self.scroll.cOntentSize= CGSizeMake(CGRectGetMaxX(imgAndP.btn.frame)+10, 0); 
    if (CGRectGetMaxX(self.btnImg.frame)>self.scroll.frame.size.width) { 
      self.scroll.cOntentOffset= CGPointMake(self.btnImg.frame.origin.x-10, 0); 
    } 
  } 
 
} 
 
@end 

在控制器中使用此自定义控件如下:

UIBaseScrollView *det5 = [[UIBaseScrollView alloc] initWithFrame:CGRectMake
(20, CGRectGetMaxY(det4.frame)+20, WIDTH-40, 80) CurrenContr:self]; 

运行结果如下:


在控制器中直接使用此相册类也与此类似,不同之处就是让所在控制器遵守类属性的协议,然后实现即可,在此不再奥数。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!


推荐阅读
  • Monkey《大话移动——Android与iOS应用测试指南》的预购信息发布啦!
    Monkey《大话移动——Android与iOS应用测试指南》的预购信息已经发布,可以在京东和当当网进行预购。感谢几位大牛给出的书评,并呼吁大家的支持。明天京东的链接也将发布。 ... [详细]
  • 本文介绍了解决Netty拆包粘包问题的一种方法——使用特殊结束符。在通讯过程中,客户端和服务器协商定义一个特殊的分隔符号,只要没有发送分隔符号,就代表一条数据没有结束。文章还提供了服务端的示例代码。 ... [详细]
  • 本文介绍了九度OnlineJudge中的1002题目“Grading”的解决方法。该题目要求设计一个公平的评分过程,将每个考题分配给3个独立的专家,如果他们的评分不一致,则需要请一位裁判做出最终决定。文章详细描述了评分规则,并给出了解决该问题的程序。 ... [详细]
  • 本文介绍了C++中省略号类型和参数个数不确定函数参数的使用方法,并提供了一个范例。通过宏定义的方式,可以方便地处理不定参数的情况。文章中给出了具体的代码实现,并对代码进行了解释和说明。这对于需要处理不定参数的情况的程序员来说,是一个很有用的参考资料。 ... [详细]
  • 本文介绍了OC学习笔记中的@property和@synthesize,包括属性的定义和合成的使用方法。通过示例代码详细讲解了@property和@synthesize的作用和用法。 ... [详细]
  • 本文主要解析了Open judge C16H问题中涉及到的Magical Balls的快速幂和逆元算法,并给出了问题的解析和解决方法。详细介绍了问题的背景和规则,并给出了相应的算法解析和实现步骤。通过本文的解析,读者可以更好地理解和解决Open judge C16H问题中的Magical Balls部分。 ... [详细]
  • Mac OS 升级到11.2.2 Eclipse打不开了,报错Failed to create the Java Virtual Machine
    本文介绍了在Mac OS升级到11.2.2版本后,使用Eclipse打开时出现报错Failed to create the Java Virtual Machine的问题,并提供了解决方法。 ... [详细]
  • 本文讨论了使用差分约束系统求解House Man跳跃问题的思路与方法。给定一组不同高度,要求从最低点跳跃到最高点,每次跳跃的距离不超过D,并且不能改变给定的顺序。通过建立差分约束系统,将问题转化为图的建立和查询距离的问题。文章详细介绍了建立约束条件的方法,并使用SPFA算法判环并输出结果。同时还讨论了建边方向和跳跃顺序的关系。 ... [详细]
  • 本文介绍了MyBioSource转甲状腺素蛋白定量检测ELISA试剂盒的应用方法及特点。ELISA法作为一项新技术在免疫诊断中的应用范围不断扩大,不仅适用于多种病原微生物引起的传染病、非传染病的免疫诊断,也可用于大/小分子抗原的定量检测。ELISA法具有灵敏、特异、简单、快速、稳定及易于自动化操作等特点,是一种早期诊断的良好方法,也可用于血清流行病学调查。MyBioSource转甲状腺素蛋白定量检测ELISA试剂盒使用方法包括对血清和血浆的操作要求。 ... [详细]
  • Android Studio Bumblebee | 2021.1.1(大黄蜂版本使用介绍)
    本文介绍了Android Studio Bumblebee | 2021.1.1(大黄蜂版本)的使用方法和相关知识,包括Gradle的介绍、设备管理器的配置、无线调试、新版本问题等内容。同时还提供了更新版本的下载地址和启动页面截图。 ... [详细]
  • 本文介绍了一种划分和计数油田地块的方法。根据给定的条件,通过遍历和DFS算法,将符合条件的地块标记为不符合条件的地块,并进行计数。同时,还介绍了如何判断点是否在给定范围内的方法。 ... [详细]
  • 本文讲述了作者通过点火测试男友的性格和承受能力,以考验婚姻问题。作者故意不安慰男友并再次点火,观察他的反应。这个行为是善意的玩人,旨在了解男友的性格和避免婚姻问题。 ... [详细]
  • 安卓select模态框样式改变_微软Office风格的多端(Web、安卓、iOS)组件库——Fabric UI...
    介绍FabricUI是微软开源的一套Office风格的多端组件库,共有三套针对性的组件,分别适用于web、android以及iOS,Fab ... [详细]
  • 本文介绍了多因子选股模型在实际中的构建步骤,包括风险源分析、因子筛选和体系构建,并进行了模拟实证回测。在风险源分析中,从宏观、行业、公司和特殊因素四个角度分析了影响资产价格的因素。具体包括宏观经济运行和宏经济政策对证券市场的影响,以及行业类型、行业生命周期和行业政策对股票价格的影响。 ... [详细]
  • 宁德时代与第四范式达成合作,将利用第四范式的AI技术,打造规模化的人工智能平台,并将AI技术融入电池生产线。通过全流程AI技术和低门槛的AI生产工具,宁德时代实现了对生产线数据的实时分析与决策。第四范式是一家人工智能技术与服务提供商,其先知平台降低了AI在各行业内的应用门槛。宁德时代是国内具备国际竞争力的动力电池制造商之一,专注于新能源汽车动力电池系统、储能系统的研发、生产和销售。 ... [详细]
author-avatar
古月礻羊米兰_318
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有