我的编程空间,编程开发者的网络收藏夹
学习永远不晚

使用Swift怎么实现一个最小化语音通话功能

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

使用Swift怎么实现一个最小化语音通话功能

本篇文章为大家展示了使用Swift怎么实现一个最小化语音通话功能,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。

SuspendTool

import Foundationimport UIKitenum SuspendType { case none case single case multi}class SuspendTool: NSObject { static let sharedInstance = SuspendTool() private var suspendWindows: [SuspendWindow] = []// var semicircle: Semicircle? var origin: CGPoint = CGPoint.init(x: 10, y: 300) static func showSuspendWindow(rootViewController: UIViewController, coverImageName: String) { let tool = SuspendTool.sharedInstance let window = SuspendWindow.init(rootViewController: rootViewController, coverImageName: coverImageName, frame: CGRect.init(origin: tool.origin, size: CGSize.init(width: radious, height: radious))) window.show() tool.suspendWindows.append(window) } static func replaceSuspendWindow(rootViewController: UIViewController, coverImageName: String) { let tool = SuspendTool.sharedInstance tool.suspendWindows.removeAll() let window = SuspendWindow.init(rootViewController: rootViewController, coverImageName: coverImageName, frame: CGRect.init(origin: tool.origin, size: CGSize.init(width: radious, height: radious))) window.show() tool.suspendWindows.append(window) } static func remove(suspendWindow: SuspendWindow) { UIView.animate(withDuration: 0.25, animations: {  suspendWindow.alpha = 0 }) { (complete) in  if let index = SuspendTool.sharedInstance.suspendWindows.index(of: suspendWindow) {  SuspendTool.sharedInstance.suspendWindows.remove(at: index)  } } } static func setLatestOrigin(origin: CGPoint) { SuspendTool.sharedInstance.origin = origin }}

SuspendWindow

import UIKitlet radious: CGFloat = 82class SuspendWindow: UIWindow {  fileprivate let coverImageName: String fileprivate let space: CGFloat = 15 var containsRootViewController: UIViewController?  init(rootViewController: UIViewController ,coverImageName: String, frame: CGRect) {  self.coverImageName = coverImageName  super.init(frame: frame)  // self.rootViewController = rootViewController  self.containsRootViewController = rootViewController }  required init?(coder aDecoder: NSCoder) {  fatalError("init(coder:) has not been implemented") }  func show() {  self.backgroundColor = UIColor.clear  self.windowLevel = UIWindow.Level.alert - 1//UIWindowLevelAlert - 1  self.screen = UIScreen.main  self.isHidden = false    let bgView = UIView()  bgView.isUserInteractionEnabled = true  bgView.frame = self.bounds  bgView.backgroundColor = UIColor.white  bgView.layer.cornerRadius = radious / 2.0  bgView.layer.borderColor = UIColor.lightGray.cgColor  bgView.layer.borderWidth = 5  bgView.layer.masksToBounds = true  self.addSubview(bgView)  bgView.addSubview(iconImageView)  bgView.addSubview(timeLabel)    let panGesture = UIPanGestureRecognizer.init(target: self, action: #selector(didPan(_:)))  self.addGestureRecognizer(panGesture)    let tapGesture = UITapGestureRecognizer.init(target: self, action: #selector(didTap(_:)))  self.addGestureRecognizer(tapGesture) }  @objc fileprivate func didTap(_ tapGesture: UITapGestureRecognizer) {  SuspendTool.sharedInstance.origin = self.frame.origin  self.containsRootViewController?.spread(from: self.self.frame.origin)  SuspendTool.remove(suspendWindow: self) }  @objc fileprivate func didPan(_ panGesture: UIPanGestureRecognizer) {  let point = panGesture.translation(in: panGesture.view)  var originX = self.frame.origin.x + point.x  if originX < space {   originX = space  } else if originX > UIScreen.main.bounds.width - radious - space {   originX = UIScreen.main.bounds.width - radious - space  }  var originY = self.frame.origin.y + point.y  if originY < space {   originY = space  } else if originY > UIScreen.main.bounds.height - radious - space {   originY = UIScreen.main.bounds.height - radious - space  }  self.frame = CGRect.init(x: originX, y: originY, width: self.bounds.width, height: self.bounds.height)  if panGesture.state == UIGestureRecognizer.State.cancelled || panGesture.state == UIGestureRecognizer.State.ended || panGesture.state == UIGestureRecognizer.State.failed {   self.adjustFrameAfterPan()  }  panGesture.setTranslation(CGPoint.zero, in: self) }  fileprivate func adjustFrameAfterPan() {  var originX: CGFloat = space  if self.center.x < UIScreen.main.bounds.width / 2 {   originX = space  } else if self.center.x >= UIScreen.main.bounds.width / 2 {   originX = UIScreen.main.bounds.width - radious - space  }  UIView.animate(withDuration: 0.25, animations: {   self.frame = CGRect.init(x: originX, y: self.frame.origin.y, width: self.frame.size.width, height: self.frame.size.height)  }) { (complete) in   SuspendTool.setLatestOrigin(origin: self.frame.origin)  } } lazy var timeLabel: UILabel = {  let timeLabel = UILabel()  timeLabel.frame = CGRect(x: 0, y: 55.5, width: 42, height: 13)  timeLabel.center.x = self.bounds.size.width / 2  timeLabel.textAlignment = .center  timeLabel.text = "0:00"  timeLabel.textColor = UIColor.text  timeLabel.font = UIFont.mediumFont(ofSize: 13)  return timeLabel }()  lazy var iconImageView: UIImageView = {  let iconImageView = UIImageView.init(image: UIImage.init(named: coverImageName))  iconImageView.isUserInteractionEnabled = true  iconImageView.frame = CGRect(x: 0, y: 12, width: 38, height: 38)  iconImageView.center.x = self.bounds.size.width / 2  return iconImageView }()}

UIViewController+FF

import Foundationimport UIKitextension UIViewController { func suspend(coverImageName: String, type: SuspendType) { if type == .none {  self.navigationController?.popViewController(animated: true)  return } self.view.layer.masksToBounds = true UIView.animate(withDuration: 0.25, animations: {  self.view.layer.cornerRadius = radious / 2.0  self.view.frame = CGRect.init(origin: SuspendTool.sharedInstance.origin, size: CGSize.init(width: radious, height: radious))  self.view.layoutIfNeeded() }) { (complete) in  self.navigationController?.popViewController(animated: false)  if type == .single {  SuspendTool.replaceSuspendWindow(rootViewController: self, coverImageName: coverImageName)  } else {  SuspendTool.showSuspendWindow(rootViewController: self, coverImageName: coverImageName)  } } } func spread(from point: CGPoint) { if let isContain = self.navigationController?.viewControllers.contains(self), isContain {  return } self.view.frame = CGRect.init(origin: point, size: CGSize.init(width: radious, height: radious)) //UIViewController.currentViewController()  UIViewController.currentViewController().navigationController?.pushViewController(self, animated: false) UIView.animate(withDuration: 0.25, animations: {  self.view.layer.cornerRadius = 0  self.view.frame = UIScreen.main.bounds  self.view.layoutIfNeeded() }) } static func currentViewController() -> UIViewController { var rootViewController: UIViewController? = nil for window in UIApplication.shared.windows {  if (window.rootViewController != nil) {  rootViewController = window.rootViewController  break  } } var viewController = rootViewController while (true) {  if viewController?.presentedViewController != nil {  viewController = viewController!.presentedViewController  } else if viewController!.isKind(of: UINavigationController.self) {  viewController = (viewController as! UINavigationController).visibleViewController  } else if viewController!.isKind(of: UITabBarController.self) {  viewController = (viewController as! UITabBarController).selectedViewController  } else {  break  } } return viewController! }}

上述内容就是使用Swift怎么实现一个最小化语音通话功能,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注编程网行业资讯频道。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

使用Swift怎么实现一个最小化语音通话功能

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

使用Swift怎么实现一个最小化语音通话功能

本篇文章为大家展示了使用Swift怎么实现一个最小化语音通话功能,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。SuspendToolimport Foundationimport UIKitenum
2023-06-06

Android应用中怎么实现一个通话录音功能

这期内容当中小编将会给大家带来有关Android应用中怎么实现一个通话录音功能,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。服务代码:package com.eboy.phoneListener;impo
2023-05-31

使用Html5怎么实现一个语音搜索功能

这篇文章给大家介绍使用Html5怎么实现一个语音搜索功能,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。html是什么html的全称为超文本标记语言,它是一种标记语言,包含了一系列标签.通过这些标签可以将网络上的文档格式
2023-06-09

使用Html5怎么实现一个微信语音功能

使用Html5怎么实现一个微信语音功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。为什么要学会HTML5 的语音呢?1.Html5 规范推进,手机的更新加速了
2023-06-09

C++怎么用winapi socket实现局域网语音通话功能

本篇内容主要讲解“C++怎么用winapi socket实现局域网语音通话功能”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C++怎么用winapi socket实现局域网语音通话功能”吧!wa
2023-07-02

怎么在小程序中实现一个录音功能

本篇文章为大家展示了怎么在小程序中实现一个录音功能,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。首先获取录音管理器模块:const recorderManager = Taro.getRecorde
2023-06-07

怎么 在HTML5中实现一个语音合成功能

怎么 在HTML5中实现一个语音合成功能?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。 Speech Synthesis API通过上面的例子我们可以猜测到上面调用的两个方法的
2023-06-09

通过在android项目中使用MediaRecorder实现一个录音功能

这篇文章将为大家详细讲解有关通过在android项目中使用MediaRecorder实现一个录音功能,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。MainActivitypackage co
2023-05-31

怎么在Android应用中实现一个语音消息发送功能

本篇文章为大家展示了怎么在Android应用中实现一个语音消息发送功能,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。直接上代码://语音操作对象private MediaPlayer mPlayer
2023-05-30

使用PHP怎么实现一个页面静态化功能

使用PHP怎么实现一个页面静态化功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。php有什么用php是一个嵌套的缩写名称,是英文超级文本预处理语言,它的语法混
2023-06-06

Java中怎么通过调用jna实现语音识别功能

Java中怎么通过调用jna实现语音识别功能,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。JNAjava调用.dll获取.so一般通过JNI,但是JNI的使用比较复杂,需要用C
2023-06-17

使用java怎么实现一个ATM功能

使用java怎么实现一个ATM功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。Java的特点有哪些Java的特点有哪些1.Java语言作为静态面向对象编程语言
2023-06-14

使用CSS3怎么实现一个弹幕功能

本篇文章给大家分享的是有关使用CSS3怎么实现一个弹幕功能,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。1.首先创建弹幕区域
2023-06-08

使用Python怎么实现一个词云功能

使用Python怎么实现一个词云功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。Python的优点有哪些1、简单易用,与C/C++、Java、C# 等传统语言
2023-06-14

使用Django怎么实现一个分页功能

这篇文章主要为大家详细介绍了使用Django怎么实现一个分页功能,文中示例代码介绍的非常详细,具有一定的参考价值,发现的小伙伴们可以参考一下:创建项目创建APP,添加APP这些就不在多说我们这次重点来看到视图函数下面是路由设置视图函数继承T
2023-06-06

使用ajax怎么实现一个登录功能

本篇文章给大家分享的是有关使用ajax怎么实现一个登录功能,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。ajax的优点:1、最大的一点是页面无刷新,用户的体验非常好。2、使用异
2023-06-08

使用canvas怎么实现一个拼图功能

使用canvas怎么实现一个拼图功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。实现的思路其实挺简单的,主要是通过服务端获取图片链接,图片宽度,图片高度,然后
2023-06-09

使用canvas怎么实现一个滤镜功能

使用canvas怎么实现一个滤镜功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。1 了解 canvas?1.1 什么是 canvas?这个 HTML 元素是为
2023-06-09

使用JavaScript怎么实现一个圆角功能

使用JavaScript怎么实现一个圆角功能?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。找在IE下实现css3效果的圆角时找到的一个实例,没有测试,不知道使用起来怎么样,
2023-06-08

怎么在Android应用中利用控件实现一个对话框功能

怎么在Android应用中利用控件实现一个对话框功能?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。1、自定义提示对话框DialogM.Builder builder = new
2023-05-31

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录