Swift日常开发随笔

1、修改UISearchBar的搜索框底色

使用以下代码:
setSearchFieldBackgroundImage(CommonUseClass._sharedManager.imageFromColor(color: .white, viewSize: CGSize(width: self.bounds.size.width, height: self.bounds.size.height)), for: .normal)

//颜色创建图片
    func imageFromColor(color: UIColor, viewSize: CGSize) -> UIImage{
        let rect: CGRect = CGRect(x: 0, y: 0, width: viewSize.width, height: viewSize.height)
        UIGraphicsBeginImageContext(rect.size)
        let context: CGContext = UIGraphicsGetCurrentContext()!
        context.setFillColor(color.cgColor)
        context.fill(rect)
        let image = UIGraphicsGetImageFromCurrentImageContext()
        UIGraphicsGetCurrentContext()
        return image!
    }

2、修改UITextField的placeholderLabel的默认字体颜色

inputTextField.text = "123"
//备注:因为苹果公司开发过程中使用的是懒加载,所以如果不提前进行设置储值,则不会创建“_placeholderLabel”,仅仅使用以下代码不会进行更改默认字体颜色
inputTextField.setValue(colorWithHexString("0x999999"), forKeyPath: "_placeholderLabel.textColor")

3、为UICollectionView添加headerView

//备注:UICollectionView跟UITableView在设置headerView时有少许的差别。UICollection使用的是一个UICollectionReusableView来进行创建

collectionView.register(UICollectionReusableView, forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "UICollectionReusableView")

//实现代理方法
func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
        let headerView = collectionView.dequeueReusableSupplementaryView(ofKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier:"UICollectionReusableView", for: indexPath)
        headerView.addSubview(contentSearchBar)
        return headerView
    }

//起初时候使用上面的代理方法不知道为何没有执行,后来设置了以下值发现竟然OK了,也不知道为啥,反正就用了。
layout.headerHeight = 70

4、自定义轮播图的UIPageControl

//创建轮播视图

class NACustomBannerView: UIView, UIScrollViewDelegate {
    var timeInterval: TimeInterval = 1
    
    private var imageUrls: [String] = [String]()
    private var imageArray: [UIImageView] = [UIImageView]()
    private var tapAction: (Int) -> Void
    private var currentIndex: Int = 0
    private weak var timer: Timer?
    
    private lazy var scrollNode: UIScrollView = {
        let node = UIScrollView()
        node.scrollsToTop = false
        node.isPagingEnabled = true
        node.bounces = false
        node.frame = self.bounds
        node.delegate = self
        node.showsHorizontalScrollIndicator = false
        node.decelerationRate = UIScrollView.DecelerationRate(rawValue: 1)
        node.setContentOffset(CGPoint(x: self.frame.width, y: 0), animated: false)
        node.contentSize = CGSize(width: self.frame.size.width * 3.0, height: 0)
        return node
    }()
    
    lazy var pageControl: NACustomBannerPageControl = {
        let node = NACustomBannerPageControl(frame: CGRect(x: Int(UIScreen.main.bounds.width / 2 - 40), y: Int(self.frame.height - 15), width: 10 * self.imageUrls.count , height: 10))
        node.numberOfPages = self.imageUrls.count
        return node
    }()
    
    // MARK: - Public
    func resetCurrentPage(_ page: Int) {
        currentIndex = page
        pageControl.currentPage = page
        resetImageView()
        startTimer()
    }
    
    // MARK: - Init
    init(frame: CGRect, imageUrls: [String], tapAction action: @escaping(Int) -> Void) {
        self.imageUrls = imageUrls
        self.tapAction = action
        super.init(frame: frame)
        
        addImageView()
        addSubview(scrollNode)
        addSubview(pageControl)
        startTimer()
    }
    
    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    // MARK: - UIScrollViewDelegate
    func scrollViewDidScroll(_ scrollView: UIScrollView) {
        let contentOffsetX = scrollView.contentOffset.x
        // 设置图片信息
        if contentOffsetX == 2 * scrollView.frame.width {// 左滑
            currentIndex = getActualCurrentPage(calculatedPage: currentIndex + 1)
            resetImageView()
        } else if (contentOffsetX == 0) {// 右滑
            currentIndex = getActualCurrentPage(calculatedPage: currentIndex - 1)
            resetImageView()
        }

        // 设置 pageControl
        if contentOffsetX < scrollView.frame.width && contentOffsetX > 0 {
            if contentOffsetX <= scrollView.frame.width * 0.5 {
                pageControl.currentPage = getActualCurrentPage(calculatedPage: currentIndex - 1)
            } else if contentOffsetX > scrollView.frame.width * 0.5 {
                pageControl.currentPage = getActualCurrentPage(calculatedPage: currentIndex)
            }
        } else if contentOffsetX > scrollView.frame.width && contentOffsetX < scrollView.frame.width * 2 {
            if contentOffsetX >= scrollView.frame.width * 1.5 {
                pageControl.currentPage = getActualCurrentPage(calculatedPage: currentIndex + 1)
            } else if contentOffsetX < scrollView.frame.width * 1.5 {
                pageControl.currentPage = currentIndex
            }
        }
        
    }
    
    func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {
        scrollView.setContentOffset(CGPoint(x: self.frame.width, y: 0), animated: true)
        startTimer()
    }
    
    func scrollViewWillBeginDragging(_ scrollView: UIScrollView) {
        timer?.invalidate()
        timer = nil
    }

    // MARK: - Action
    @objc fileprivate func cycleViewDidClick(gesture: UITapGestureRecognizer) {
        print("点击了第\(currentIndex)张图")
        let imageView = UIImageView(frame: CGRect(x: 0, y: 0, width: frame.width, height: frame.height))
        imageView.kf.setImage(with: URL(string: imageUrls[currentIndex]))
        tapAction(currentIndex)
    }
    
    @objc fileprivate func autoScroll() {
        if imageUrls.count < 2 {
            return
        }
        scrollNode.setContentOffset(CGPoint(x: self.frame.width * 2, y: 0), animated: true)
    }
    
    func startTimer() {
        guard imageUrls.count > 0 else { return }
        
        if let myTimer = timer {
            myTimer.invalidate()
            timer = nil
        }
        timer = Timer.scheduledTimer(timeInterval: self.timeInterval, target: self, selector: #selector(autoScroll), userInfo: nil, repeats: true)
        RunLoop.current.add(timer!, forMode: RunLoop.Mode.common)
    }
    
    func invalidateTimer() {
        timer?.invalidate()
        timer = nil
    }
    
    fileprivate func addImageView() {
        var x: CGFloat = 0
        var pageIndex: NSInteger = self.imageUrls.count - 1
        for index in 0..<3 {
            let imgNode = UIImageView()
            x = CGFloat(index) * frame.width
            imgNode.frame = CGRect(x: x, y: 0, width: frame.width, height: frame.height)
            imgNode.kf.setImage(with: URL(string: imageUrls.count == 0 ? "" : (imageUrls[pageIndex])))
            imgNode.contentMode = .scaleAspectFill
            imgNode.clipsToBounds = true
            
            let gesture = UITapGestureRecognizer(target: self, action: #selector(cycleViewDidClick(gesture:)))
            imgNode.addGestureRecognizer(gesture)
            imgNode.isUserInteractionEnabled = true
            imageArray.append(imgNode)
            scrollNode.addSubview(imgNode)
            
            if imageUrls.count == 1 {
                pageIndex = 0
                scrollNode.isScrollEnabled = false
            } else {
                pageIndex = index == 0 ? 0 : 1
            }
        }
        
    }
    
    fileprivate func resetImageView(){
        
        let preIndex: NSInteger = getActualCurrentPage(calculatedPage: currentIndex - 1)
        let nextIndex: NSInteger = getActualCurrentPage(calculatedPage: currentIndex + 1)
        
        if imageUrls.count == 0 {
            return
        }

        imageArray[0].kf.setImage(with: URL(string: imageUrls[preIndex]))
        imageArray[1].kf.setImage(with: URL(string: imageUrls[currentIndex]))
        imageArray[2].kf.setImage(with: URL(string: imageUrls[nextIndex]))
        
        scrollNode.contentOffset = CGPoint(x: self.frame.width, y: 0)
    }
    

    fileprivate func getActualCurrentPage(calculatedPage page: NSInteger) -> NSInteger {
        if page == imageUrls.count {
            return 0
        } else if page == -1 {
            return imageUrls.count - 1
        } else {
            return page
        }
    }
}
自定义轮播视图

import UIKit

class NACustomBannerPageControl: UIView {
    let pageControlDiameter: Float = 5
    var currentPage: NSInteger = 0 {
        didSet {
            if oldValue == currentPage {
                return
            }
            
            if currentPage < oldValue {// 向右拉伸
                UIView.animate(withDuration: 0.3, animations: {
                    for dot in self.subviews {
                        var dotFrame = dot.frame
                        if dot.tag == self.currentPage {
                            dotFrame.size.width = CGFloat(self.pageControlDiameter * 2.0)
                            dot.backgroundColor = colorWithHexString("0xfdd000")
                            dot.frame = dotFrame
                            
                        } else if dot.tag <= oldValue && dot.tag > self.currentPage {
                            dotFrame.origin.x += CGFloat(self.pageControlDiameter)
                            dotFrame.size.width = CGFloat(self.pageControlDiameter)
                            dot.backgroundColor = .white
                            dot.frame = dotFrame
                        }
                    }
                })
                
            } else {
                UIView.animate(withDuration: 0.3, animations: {
                    for dot in self.subviews {
                        var dotFrame = dot.frame
                        if dot.tag == self.currentPage {
                            dotFrame.size.width = CGFloat(self.pageControlDiameter * 2.0)
                            dotFrame.origin.x -= CGFloat(self.pageControlDiameter)
                            dot.backgroundColor = colorWithHexString("0xfdd000")
                            dot.frame = dotFrame
                            
                        } else if dot.tag > oldValue && dot.tag < self.currentPage {
                            dotFrame.origin.x -= CGFloat(self.pageControlDiameter)
                            dot.frame = dotFrame
                            
                        } else if dot.tag == oldValue {
                            dotFrame.size.width = CGFloat(self.pageControlDiameter)
                            dot.backgroundColor = .white
                            dot.frame = dotFrame
                        }
                    }
                })
                
            }
            
        }
    }
    var numberOfPages: NSInteger = 0 {
        didSet {
            if self.numberOfPages == 0 {
                return
            }
            if self.subviews.count > 0 {
                for view in self.subviews {
                    view.removeFromSuperview()
                }
            }

            var dotX: Float = 0;
            var dotW: Float = pageControlDiameter;
            var bgColor: UIColor
            for i in 0..<numberOfPages {
                if i <= currentPage {
                    dotX = pageControlDiameter * 2.0 * Float(i)
                } else {
                    dotX = pageControlDiameter * 2 * Float(i) + pageControlDiameter
                }
                
                if i == currentPage {
                    dotW = pageControlDiameter * 2;
                    bgColor = colorWithHexString("0xfdd000")
                } else {
                    dotW = pageControlDiameter;
                    bgColor = .white
                }

                let temp = UIView()
                temp.frame = CGRect(x: CGFloat(dotX), y: CGFloat(0), width: CGFloat(dotW), height: CGFloat(pageControlDiameter))
                temp.layer.cornerRadius = CGFloat(pageControlDiameter * 0.5)
                temp.layer.masksToBounds = true
                temp.backgroundColor = bgColor
                temp.tag = i
                addSubview(temp)
            }

        }
    }
    
}
自定义UIPageControl样式

func setUpTurnsChangeItem() -> Void {
        let x = (SCREEN_WIDTH - 335)/2
        let frame = CGRect(x: x, y: CGFloat(21), width: 335, height: 170)
        let urls = ["http://p.lrlz.com/data/upload/mobile/special/s252/s252_05471521705899113.png",              "http://p.lrlz.com/data/upload/mobile/special/s303/s303_05442007678060723.png",                  "http://p.lrlz.com/data/upload/mobile/special/s303/s303_05442007587372591.png",                    "http://p.lrlz.com/data/upload/mobile/special/s303/s303_05442007388249407.png",                    "http://p.lrlz.com/data/upload/mobile/special/s303/s303_05442007470310935.png"]
        cycleScrollView = NACustomBannerView(frame: frame, imageUrls: urls) { (index) in
            print("当前第\(index)张")
        }
        cycleScrollView.layer.masksToBounds = true
        cycleScrollView.layer.cornerRadius = 5.0
        container.addSubview(cycleScrollView)
        
    }
使用方法

效果图如下:

5、自定义下拉列表

import UIKit

class NACustomDropListView: UIView,UITableViewDelegate,UITableViewDataSource{
    fileprivate var cellid = "cellid"
    lazy  var titleArray = [String]()
    lazy  var tableArray = [[String]]()
    var screenWidth = SCREEN_WIDTH
    var screenHeight = SCREEN_HEIGHT
    var maskViewSS:UIView?
    var selectClosure:((_ tag:Int,_ row:Int)->Void)?
    init(frame: CGRect,tableArr:[[String]],selectClosure : @escaping (_ tag:Int,_ row:Int)->Void) {
        super.init(frame: frame)
        self.titleArray = tableArr.map({ (arr) -> String in
            return arr[0]
        })
        self.tableArray = tableArr
        self.selectClosure = selectClosure
        self.backgroundColor = UIColor.white
        self.setTitleButton()
        setMaskView()
        setTableView()
    }
    
    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
    
    
    func setMaskView(){
        let height = Int(Int(SCREEN_HEIGHT) - 40 - Int(CommonUseClass._sharedManager.navigationBarHeight()))
        maskViewSS = UIView.init(frame: CGRect(x: 0, y: 40, width: Int(screenWidth), height:height))
        maskViewSS?.backgroundColor = newColorWithAlpha(0, 0, 0, 0.3)
        let tap = UITapGestureRecognizer.init(target: self, action: #selector(tapAction))
        
        maskViewSS?.alpha = 0
        maskViewSS?.addGestureRecognizer(tap)
        
    }
    @objc func tapAction(){
        for i in 0..<self.tableArray.count{
            let tableView = self.viewWithTag(100+i) as! UITableView
            let drop = self.viewWithTag(1000+i) as! NACustomDropListTitleView

            if tableView.frame.height>1{
                drop.isSelected = false
                UIView.animate(withDuration: 0.2, animations: {
                    tableView.frame = CGRect.init(x: 0, y: 40, width: UIScreen.main.bounds.width, height: 1)
                    self.maskViewSS?.alpha = 0
                }, completion: { (idCom) in
                    self.maskViewSS?.removeFromSuperview()
                })

            }
        }
    }
    func setTitleButton(){
        let totalArry:Array<Array<String>>  = self.tableArray
        let width:CGFloat = screenWidth / CGFloat(titleArray.count)
        
        for i in 0..<self.titleArray.count{
            let view = NACustomDropListTitleView.init(frame: CGRect.init(x: CGFloat(i)*width, y: 0, width: width, height: 44), title: titleArray[i])
            view.tag = 1000+i
            view.gesClosure = { (select)->Void in
                self.insertSubview(self.maskViewSS!, at: 0)
                UIView.animate(withDuration: 0.2, animations: {
                    self.maskViewSS?.alpha = 1
                })
                if select {
                    
                    for n in 0..<self.titleArray.count {
                        let drop = self.viewWithTag(1000+n) as! NACustomDropListTitleView
                        let tableView = self.viewWithTag(100+n) as! UITableView
                        if i == n {
                            drop.isSelected = true
                            
                            
                        }else{
                            drop.isSelected = false
                        }
                        let arr = totalArry[n] as [String]
//                        tableView.reloadData()
                        
                        if i == n {
                            UIView.animate(withDuration: 0.2, animations: {
                                let height2 = Int(arr.count) * 40 + 20
                                let height1 = Int(Int(SCREEN_HEIGHT) - 40 - Int(CommonUseClass._sharedManager.navigationBarHeight()))
                                
                                tableView.frame = CGRect(x: 0, y: 40, width: Int(self.screenWidth), height: height2 > height1 ? height1 : height2)
                            })
                            
                        }else{
                            UIView.animate(withDuration: 0.2, animations: {
                                tableView.frame = CGRect.init(x: 0, y: 40, width: self.screenWidth, height: 1)
                            })
                        }
                    }
                }else{
                    
                    let tableView = self.viewWithTag(100+i) as! UITableView
                    
                    
                    UIView.animate(withDuration: 0.2, animations: {
                        tableView.frame = CGRect.init(x: 0, y: 40, width: self.screenWidth, height: 1)
                        self.maskViewSS?.alpha = 0
                    }, completion: { (idCom) in
                        self.maskViewSS?.removeFromSuperview()
                    })
                    
                }
                
            }
            self.addSubview(view)
            
        }
    }
    func setTableView(){
        let totalArry:Array<Array<String>>  = self.tableArray
        
        
        
        for i in 0..<totalArry.count{
            
            let tableView = UITableView.init(frame: CGRect.init(x: 0, y: 40, width: screenWidth, height: 1), style: .plain)
            
            
            tableView.delegate = self
            tableView.dataSource = self
            tableView.tag = 100+i
            tableView.backgroundColor = UIColor.white
            tableView.register(UITableViewCell.self, forCellReuseIdentifier: cellid)
            tableView.rowHeight = 40
            tableView.isScrollEnabled = false
            tableView.separatorStyle = .none
            self.addSubview(tableView)
            
            
        }
    }
    override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
        var view = super.hitTest(point, with: event)
        if view == nil {
            for subView in self.subviews {
                let tp = subView.convert(point, from: self)
                if subView.bounds.contains(tp) {
                    view = subView
                }
            }
        }
        return view
    }
    
    
    
}
extension NACustomDropListView{
    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        let drop = self.viewWithTag(tableView.tag-100+1000) as! NACustomDropListTitleView
        let cell = tableView.cellForRow(at: indexPath)
        
        drop.title  = cell?.textLabel?.text
        if self.selectClosure != nil {
            self.selectClosure!(tableView.tag,indexPath.row)
        }
        
        drop.isSelected = false
        UIView.animate(withDuration: 0.2, animations: {
            tableView.frame = CGRect.init(x: 0, y: 40, width: self.screenWidth, height: 1)
            self.maskViewSS?.alpha = 0
        }, completion: { (idCom) in
            self.maskViewSS?.removeFromSuperview()
        })
        
        
    }
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        let drop = self.viewWithTag(tableView.tag-100+1000) as! NACustomDropListTitleView
        if drop.isSelected == nil {
            return 0
        }else{
            return  drop.isSelected! ? self.tableArray[tableView.tag-100].count : 0
        }
        
    }
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: cellid, for: indexPath) as UITableViewCell
        cell.textLabel?.font = UIFont.systemFont(ofSize: 14)
        cell.textLabel?.text = tableArray[tableView.tag - 100][indexPath.row]
        
        return cell
    }
}
自定义下拉列表View

import UIKit
import SnapKit
typealias GesClosure = (_ selected:Bool)->Void
class NACustomDropListTitleView: UIView {
    var label:UILabel!
    var downIcon:UIImageView!
    var topIcon:UIImageView!
    
    var ly_width:CGFloat?
    var title:String?{
        didSet{
            self.ly_width = CommonUseClass._sharedManager.getStringRect(text: self.title!,font: UIFont.systemFont(ofSize: 16)).width + 2
            label.text = self.title
            if title == "价格"{
                centerLayoutConstraints()
            }else{
                commponLayoutConstraints()
            }
            
        }
    }
    var _isSelect:Bool = false
    var gesClosure:GesClosure?
    var isSelected:Bool?{
        didSet{
            self._isSelect = isSelected!
            if isSelected! {
                self.downIcon.image = UIImage.init(named: "ic_down_y")
                self.label.textColor = colorWithHexString("0xfdd000")
            }else{
                self.downIcon.image = UIImage.init(named: "ic_down_f")
                self.label.textColor = colorWithHexString("0x000000")
            }

        }
    }
    init(frame: CGRect,title:String) {
        super.init(frame: frame)
        self.title = title
        self.ly_width = CommonUseClass._sharedManager.getStringRect(text: self.title!,font: UIFont.systemFont(ofSize: 16)).width + 2
        setUI(title: title)
        if title == "价格" {
            centerLayoutConstraints()
        }else{
            commponLayoutConstraints()
        }
        
        setGes()
    }
    
    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
    func setGes(){
        let ges = UITapGestureRecognizer.init(target: self, action: #selector(tapAction))
        
        self.addGestureRecognizer(ges)
    }
    
    @objc func tapAction(){
        self._isSelect = !self._isSelect
        self.isSelected = self._isSelect
        if (self.gesClosure != nil){
            self.gesClosure!(self.isSelected!)
        }
        
    }
    
    func setUI(title:String){
        
        label = UILabel()
        addSubview(label)
        label.font = UIFont.systemFont(ofSize: 16)
        label.textColor = colorWithHexString("0x000000")
        label.text = self.title
        
        downIcon = UIImageView.init()
        downIcon.image = UIImage.init(named:"ic_down_f")
        addSubview(downIcon)
        
        topIcon = UIImageView.init()
        topIcon.image = UIImage.init(named:"ic_down_f")
        addSubview(topIcon)
        UIView.animate(withDuration: 0.2, animations: {
            self.topIcon.transform = CGAffineTransform.init(rotationAngle: CGFloat(Double.pi))
            
        })
    }
    
    func labelConstraints() -> Void {
        label.snp.removeConstraints()
        downIcon.snp.removeConstraints()
        label.snp.makeConstraints { (make) in
            make.centerY.equalTo(self)
            make.centerX.equalTo(self)
            make.height.equalTo(16)
            make.width.equalTo(ly_width!)
        }
    }
    func commponLayoutConstraints(){
        labelConstraints()
        downIcon.snp.makeConstraints { (make) in
            make.left.equalTo(label.snp.right).offset(2)
            make.centerY.equalTo(label)
            make.width.equalTo(12)
            make.height.equalTo(6)
            
        }
    }
    
    func centerLayoutConstraints() -> Void {
        labelConstraints()
        
        topIcon.snp.makeConstraints { (make) in
            make.left.equalTo(label.snp.right).offset(2)
            make.top.equalTo(label).offset(1)
            make.width.equalTo(12)
            make.height.equalTo(6)
        }
        
        downIcon.snp.makeConstraints { (make) in
            make.left.equalTo(label.snp.right).offset(2)
            make.bottom.equalTo(label).offset(-1)
            make.width.equalTo(12)
            make.height.equalTo(6)
            
        }
        
        
    }

}
自定义下拉列表titleView

lazy var dropListView : NACustomDropListView = {
        let dropListView = NACustomDropListView.init(frame: CGRect(x: CGFloat(0), y: 0, width: SCREEN_WIDTH, height: CGFloat(44)), tableArr: [moneyArray,limitArray,sortArray], selectClosure: { (tag, row) in
            print(tag-100,row)
        })
        return dropListView
    }()


view.addSubview(dropListView)
使用方法

运行效果:

提示:之所以为空白,是因为我把下拉列表中的tableView.reloadData()这行代码屏蔽掉了,加入的数组没有刷新。

6、隐藏navigationBar和tabbar的黑色分割线

//隐藏navigationBar下面的分割线
self.navigationController?.navigationBar.setBackgroundImage(UIImage(), for: .any, barMetrics: .default)
self.navigationController?.navigationBar.shadowImage = UIImage()


//隐藏tabbar上面的分割线
self.tabBarController?.tabBar.shadowImage = UIImage.init()
self.tabBarController?.tabBar.backgroundImage = UIImage.init()

 7、获取导航栏+状态栏的高度

func navigationBarHeight() -> Float {
        var navigationBarH: Float = 64
        if IS_IPHONE_X.boolValue {
            navigationBarH += 20
        }else{
            navigationBarH += 0
        }
        return navigationBarH
    }

8、判断字符串是否为空

func StringIsEmpty(value: AnyObject?) -> Bool {
        if (nil == value) {
            return true
        }else{
            if let myValue  = value as? String{
                return myValue == "" || myValue == "(null)" || 0 == myValue.count
            }else{
                return true
            }
        }
    }

9、判断是否是整数

func isPurnInt(string: String) -> Bool {
        let scan: Scanner = Scanner(string: string)
        var val:Int = 0
        return scan.scanInt(&val) && scan.isAtEnd
    }

10、添加阴影效果

func setShadow(view:UIView,sColor:UIColor,offset:CGSize,
                   opacity:Float,radius:CGFloat) {
        view.layer.shadowColor = sColor.cgColor
        view.layer.shadowOpacity = opacity
        view.layer.shadowRadius = radius
        view.layer.shadowOffset = offset
    }

使用实例:setShadow(view: groundView, sColor: .black, offset: CGSize(width: 1, height: 1), opacity:0.15, radius: 5)


11、颜色创建图片

func imageFromColor(color: UIColor, viewSize: CGSize) -> UIImage{
        let rect: CGRect = CGRect(x: 0, y: 0, width: viewSize.width, height: viewSize.height)
        UIGraphicsBeginImageContext(rect.size)
        let context: CGContext = UIGraphicsGetCurrentContext()!
        context.setFillColor(color.cgColor)
        context.fill(rect)
        let image = UIGraphicsGetImageFromCurrentImageContext()
        UIGraphicsGetCurrentContext()
        return image!
    }

12、获取字符串的宽度、高度

func getStringRect(text:String, font:UIFont) -> CGRect {
        let strText: NSString = NSString( string: text )
        let size:CGSize = CGSize(width: 100, height: 0)
        let options:NSStringDrawingOptions = NSStringDrawingOptions.usesLineFragmentOrigin
        let boundRect = strText.boundingRect(with: size, options: options, attributes: [NSAttributedString.Key.font: font], context: nil)
        return boundRect
    }

所用代码:均是swift 4.2下运行

原文地址:https://www.cnblogs.com/xjf125/p/10684830.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘贴.待开发的功能:1.支持自动生成约束2.开发设置页面3.做一个浏览器插件,支持不需要下载整个工程,可即时操作当前蓝湖浏览页面4.支持Flutter语言模板生成5.支持更多平台,如Sketch等6.支持用户自定义语言模板
现实生活中,我们听到的声音都是时间连续的,我们称为这种信号叫模拟信号。模拟信号需要进行数字化以后才能在计算机中使用。目前我们在计算机上进行音频播放都需要依赖于音频文件。那么音频文件如何生成的呢?音频文件的生成过程是将声音信息采样、量化和编码产生的数字信号的过程,我们人耳所能听到的声音频率范围为(20Hz~20KHz),因此音频文件格式的最大带宽是20KHZ。根据奈奎斯特的理论,音频文件的采样率一般在40~50KHZ之间。奈奎斯特采样定律,又称香农采样定律。...............
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿遍又亿遍,久久不能离开!看着小仙紫姐姐的蹦迪视频,除了一键三连还能做什么?突发奇想,能不能把舞蹈视频转成代码舞呢?说干就干,今天就手把手教大家如何把跳舞视频转成代码舞,跟着仙女姐姐一起蹦起来~视频来源:【紫颜】见过仙女蹦迪吗 【千盏】一、核心功能设计总体来说,我们需要分为以下几步完成:从B站上把小姐姐的视频下载下来对视频进行截取GIF,把截取的GIF通过ASCII Animator进行ASCII字符转换把转换的字符gif根据每
【Android App】实战项目之仿抖音的短视频分享App(附源码和演示视频 超详细必看)
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至2022年4月底。我已经将这篇博客的内容写为论文,上传至arxiv:https://arxiv.org/pdf/2204.10160.pdf欢迎大家指出我论文中的问题,特别是语法与用词问题在github上,我也上传了完整的项目:https://github.com/Whiffe/Custom-ava-dataset_Custom-Spatio-Temporally-Action-Video-Dataset关于自定义ava数据集,也是后台
因为我既对接过session、cookie,也对接过JWT,今年因为工作需要也对接了gtoken的2个版本,对这方面的理解还算深入。尤其是看到官方文档评论区又小伙伴表示看不懂,所以做了这期视频内容出来:视频在这里:本期内容对应B站的开源视频因为涉及的知识点比较多,视频内容比较长。如果你觉得看视频浪费时间,可以直接阅读源码:goframe v2版本集成gtokengoframe v1版本集成gtokengoframe v2版本集成jwtgoframe v2版本session登录官方调用示例文档jwt和sess
【Android App】实战项目之仿微信的私信和群聊App(附源码和演示视频 超详细必看)
用Android Studio的VideoView组件实现简单的本地视频播放器。本文将讲解如何使用Android视频播放器VideoView组件来播放本地视频和网络视频,实现起来还是比较简单的。VideoView组件的作用与ImageView类似,只是ImageView用于显示图片,VideoView用于播放视频。...
采用MATLAB对正弦信号,语音信号进行生成、采样和内插恢复,利用MATLAB工具箱对混杂噪声的音频信号进行滤波
随着移动互联网、云端存储等技术的快速发展,包含丰富信息的音频数据呈现几何级速率增长。这些海量数据在为人工分析带来困难的同时,也为音频认知、创新学习研究提供了数据基础。在本节中,我们通过构建生成模型来生成音频序列文件,从而进一步加深对序列数据处理问题的了解。
基于yolov5+deepsort+slowfast算法的视频实时行为检测。1. yolov5实现目标检测,确定目标坐标 2. deepsort实现目标跟踪,持续标注目标坐标 3. slowfast实现动作识别,并给出置信率 4. 用框持续框住目标,并将动作类别以及置信度显示在框上
数字电子钟设计本文主要完成数字电子钟的以下功能1、计时功能(24小时)2、秒表功能(一个按键实现开始暂停,另一个按键实现清零功能)3、闹钟功能(设置闹钟以及到时响10秒)4、校时功能5、其他功能(清零、加速、星期、八位数码管显示等)前排提示:前面几篇文章介绍过的内容就不详细介绍了,可以看我专栏的前几篇文章。PS.工程文件放在最后面总体设计本次设计主要是在前一篇文章 数字电子钟基本功能的实现 的基础上改编而成的,主要结构不变,分频器将50MHz分为较低的频率备用;dig_select
1.进入官网下载OBS stdioOpen Broadcaster Software | OBS (obsproject.com)2.下载一个插件,拓展OBS的虚拟摄像头功能链接:OBS 虚拟摄像头插件.zip_免费高速下载|百度网盘-分享无限制 (baidu.com)提取码:6656--来自百度网盘超级会员V1的分享**注意**该插件必须下载但OBS的根目录(应该是自动匹配了的)3.打开OBS,选中虚拟摄像头选择启用在底部添加一段视频录制选择下面,进行录制.
Meta公司在9月29日首次推出一款人工智能系统模型:Make-A-Video,可以从给定的文字提示生成短视频。基于**文本到图像生成技术的最新进展**,该技术旨在实现文本到视频的生成,可以仅用几个单词或几行文本生成异想天开、独一无二的视频,将无限的想象力带入生活
音频信号叠加噪声及滤波一、前言二、信号分析及加噪三、滤波去噪四、总结一、前言之前一直对硬件上的内容比较关注,但是可能是因为硬件方面的东西可能真的是比较杂,而且需要渗透的东西太多了,所以学习进展比较缓慢。因为也很少有单纯的硬件学习研究,总是会伴随着各种理论需要硬件做支撑,所以还是想要慢慢接触理论学习。但是之前总找不到切入点,不知道从哪里开始,就一直拖着。最近稍微接触了一点信号处理,就用这个当作切入点,开始接触理论学习。二、信号分析及加噪信号处理选用了matlab做工具,选了一个最简单的语音信号处理方
腾讯云 TRTC 实时音视频服务体验,从认识 TRTC 到 TRTC 的开发实践,Demo 演示& IM 服务搭建。
音乐音频分类技术能够基于音乐内容为音乐添加类别标签,在音乐资源的高效组织、检索和推荐等相关方面的研究和应用具有重要意义。传统的音乐分类方法大量使用了人工设计的声学特征,特征的设计需要音乐领域的知识,不同分类任务的特征往往并不通用。深度学习的出现给更好地解决音乐分类问题提供了新的思路,本文对基于深度学习的音乐音频分类方法进行了研究。首先将音乐的音频信号转换成声谱作为统一表示,避免了手工选取特征存在的问题,然后基于一维卷积构建了一种音乐分类模型。
C++知识精讲16 | 井字棋游戏(配资源+视频)【赋源码,双人对战】
本文主要讲解如何在Java中,使用FFmpeg进行视频的帧读取,并最终合并成Gif动态图。
在本篇博文中,我们谈及了 Swift 中 some、any 关键字以及主关联类型(primary associated types)的前世今生,并由浅及深用简明的示例向大家讲解了它们之间的奥秘玄机。