返回顶部
首页 > 资讯 > 精选 >使用Swift怎么实现一个最小化语音通话功能
  • 655
分享到

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

2023-06-06 17:06:29 655人浏览 八月长安
摘要

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

本篇文章为大家展示了使用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怎么实现一个最小化语音通话功能,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注编程网精选频道。

--结束END--

本文标题: 使用Swift怎么实现一个最小化语音通话功能

本文链接: https://lsjlt.com/news/248169.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • 使用Swift怎么实现一个最小化语音通话功能
    本篇文章为大家展示了使用Swift怎么实现一个最小化语音通话功能,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。SuspendToolimport Foundationimport ...
    99+
    2023-06-06
  • Android应用中怎么实现一个通话录音功能
    这期内容当中小编将会给大家带来有关Android应用中怎么实现一个通话录音功能,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。服务代码:package com.eboy.phoneListener;impo...
    99+
    2023-05-31
    android roi
  • 使用Html5怎么实现一个微信语音功能
    使用Html5怎么实现一个微信语音功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。为什么要学会HTML5 的语音呢?Html5 规范推进,手机的更新加速了操作...
    99+
    2023-06-09
  • 使用Html5怎么实现一个语音搜索功能
    这篇文章给大家介绍使用Html5怎么实现一个语音搜索功能,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。html是什么html的全称为超文本标记语言,它是一种标记语言,包含了一系列标签.通过这些标签可以将网络上的文档格式...
    99+
    2023-06-09
  • C++怎么用winapi socket实现局域网语音通话功能
    本篇内容主要讲解“C++怎么用winapi socket实现局域网语音通话功能”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C++怎么用winapi socket实现局域网语...
    99+
    2023-07-02
  • C++用winapi socket实现局域网语音通话功能
    目录一、socket通信二、waveIn和WaveOut的Win32API1.音频设备的的信息获取2.音频设备的初始化3.输入输出设备缓冲区的准备和添加4.播放和录音的开始和终止5....
    99+
    2024-04-02
  • 怎么在小程序中实现一个录音功能
    本篇文章为大家展示了怎么在小程序中实现一个录音功能,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。首先获取录音管理器模块:const recorderManager = ...
    99+
    2023-06-07
  • 怎么 在HTML5中实现一个语音合成功能
    怎么 在HTML5中实现一个语音合成功能?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。 Speech Synthesis API通过上面的例子我们可以猜测到上面调用的...
    99+
    2023-06-09
  • 通过在android项目中使用MediaRecorder实现一个录音功能
    这篇文章将为大家详细讲解有关通过在android项目中使用MediaRecorder实现一个录音功能,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。MainActivitypackage co...
    99+
    2023-05-31
    mediarecorder android roi
  • JS怎么实现一个微信录音功能
    今天小编给大家分享一下JS怎么实现一个微信录音功能的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。拆解需求根据原型图可以很容易...
    99+
    2023-07-05
  • 在Java中使用swing实现一个录音功能
    在Java中使用swing实现一个录音功能?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。添加监听事件:import java.awt.*;import java.awt.eve...
    99+
    2023-05-31
    java swing ava
  • 怎么在Android应用中实现一个语音消息发送功能
    本篇文章为大家展示了怎么在Android应用中实现一个语音消息发送功能,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。直接上代码://语音操作对象private MediaPlayer&nb...
    99+
    2023-05-30
    android roi
  • 使用PHP怎么实现一个页面静态化功能
    使用PHP怎么实现一个页面静态化功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。php有什么用php是一个嵌套的缩写名称,是英文超级文本预处理语言,它的语法混...
    99+
    2023-06-06
  • Java中怎么通过调用jna实现语音识别功能
    Java中怎么通过调用jna实现语音识别功能,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。JNAjava调用.dll获取.so一般通过JNI,但是JNI的使用比较复杂,需要用C...
    99+
    2023-06-17
  • 使用java怎么实现一个ATM功能
    使用java怎么实现一个ATM功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。Java的特点有哪些Java的特点有哪些1.Java语言作为静态面向对象编程语言...
    99+
    2023-06-14
  • 怎么用c语言实现一个电话薄
    这篇文章主要讲解了“怎么用c语言实现一个电话薄”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“怎么用c语言实现一个电话薄”吧!先看一下这个小程序的效果这里我为了演示方便,把人数固定为3个;人数...
    99+
    2023-06-26
  • 怎么在html5项目中实现一个录音功能
    这篇文章给大家介绍怎么在html5项目中实现一个录音功能,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。步骤1由于新的api是通过navigator.mediaDevices.getUserMedia,且返回一个prom...
    99+
    2023-06-09
  • 使用canvas怎么实现一个滤镜功能
    使用canvas怎么实现一个滤镜功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。1 了解 canvas?1.1 什么是 canvas?这个 HTML 元素是为...
    99+
    2023-06-09
  • 使用canvas怎么实现一个拼图功能
    使用canvas怎么实现一个拼图功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。实现的思路其实挺简单的,主要是通过服务端获取图片链接,图片宽度,图片高度,然后...
    99+
    2023-06-09
  • 使用ajax怎么实现一个登录功能
    本篇文章给大家分享的是有关使用ajax怎么实现一个登录功能,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。ajax的优点:最大的一点是页面无刷新,用户的体验非常好。使用异步方式与...
    99+
    2023-06-08
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作