iOS OC swift 自定义 popover 泡泡

2018-04-19  本文已影响0人  wangtieshan

环境:


Xcode:Xcode 8.2

Swift:swift3+

git 地址:https://github.com/TieShanWang/KKPopover

pod 集成:pod 'KKPopover'

【注意】pod 版本,swift 3 支持,以 3.+开头,同理 swift4 以 4.+ 开头

首先先看效果:

popover.gif

类说明

open class KKPopover: UIView

/// 点击穿透
/// 设置为 true 点击空白地方,穿透点击
/// 是否点击空白地方自动消失
/// 设置为 true 的时候,空白地方可以处理触摸事件
/// 当 touchThrough 为 true 的时候,此字段不起作用
/// 箭头方向
/// 当设置为 .any 时,采用智能查找方向,设置一个比较合适的方向
/// 指定箭头方向查找顺序
/// 如果 arrowDirection 设置为 any(按照此顺序查找合适的方向,如果查找不到,则按照最合适(智能)的方向)
/// 相当于增加了方向的优先级
/// 到屏幕边缘的最小距离,上图片中的棕色区域
contentView 缩进,contentView 在底层箭头视图中四周的缩进。防止内容覆盖圆角
/// 需要展示内容的大小,此字段一定需要重新设置
/// 并且宽高大小加上 minScreenEdg contentInset 不能大于屏幕宽高
/// 自定义内容请在此视图上增加
箭头视图
/// 根据 sourceView 展示在指定视图中
/// - Parameters:
///   - view: 添加到的视图,不传则添加到 window 上
///   - sourceView: 视图来源,箭头指向的视图
消失
/// sourceRect: sourceView 相对于 self (KKPopover) 的位置
/// size:self 的 size
/// 当 arrowDirection 为 .any 时,调用此方法获最合适方向
/// 智能计算出最好的方向
/// 重写此方法可以自定义最合适方向
/// sourceRect: sourceView 相对于 self (KKPopover) 的位置
/// size:self 的 size
/// 确定指定方向是否合适
/// 当 arrowDirection 为 .any 并且设置 perferArrowDirection 时,查找 perferArrowDirection 内部合适的方向使用

open class KKPopoverArrowView: UIView

箭头视图的配置项


    /// 边角弧度
    open var borderRadius: CGFloat = 5;
    
    /// 线条宽度
    open var lineWidth: CGFloat = 1
    
    /// 填充颜色
    open var fillColor: UIColor = UIColor.white
    
    /// 边沿线条颜色
    open var lineColor: UIColor = UIColor.white
    
    /// 箭头方向
    open var arrowDirection: UIPopoverArrowDirection = .any
    
    /// 箭头顶尖半径
    open var arrowTipRadius: CGFloat = 0
    
    /// 箭头底部基座宽度
    open var arrowBaseWidth: CGFloat = 17
    
    /// 箭头高度,从顶部中心点到基座距离
    open var arrowHeight: CGFloat = 10
    
    /// 箭头边缘到边框最小的距离
    open var minArrowEdg: CGFloat = 20
    
    /// 线条交接处风格
    open var lineJoin: CGLineJoin = CGLineJoin.round

待完善

【声明】

此公共库为个人所有,业余时间编写,与任何公司或组织均无关系

使用该公共库的组织或者公司,本人有权收回使用权

上一篇下一篇

猜你喜欢

热点阅读