如何设计一个优雅的弹框,Swift版

理念:爽到使用者就行了

最爽的 调用弹框,那肯定是:Alert().show()
什么,你要手动隐藏?那我再提供一个 dismiss()函数吧。
什么,你还要改背景颜色,弹框动画的方向,还要能自定义……

思路:通过协议的方式,提供默认实现

行行行,都满足你。我提供一个协议给你,然后帮你实现默认的动画,剩下的你自己发挥想象力就好了。

协议(AlertProtocol.swift):
public enum AppearFrom {
    case top, bottom, left, right
}

// Protocol for showing and dissmising alert view
public protocol AlertProtocol {
    func show(animated:Bool) -> Self
    func dismiss(animated:Bool) -> Self
    var backgroundView: UIView {get}
    var dialogView: UIView {get set}
    var appearFrom: AppearFrom {get}
    var clearBackground: Bool {get}
}

extension AlertProtocol {
    @discardableResult
    public func show() -> Self {
        return show(animated: true)
    }
    @discardableResult
    public func dismiss() -> Self {
        return dismiss(animated: true)
    }
}
默认实现 showdismiss

extension AlertProtocol where Self: UIView{
    
    @discardableResult
    public func show(animated: Bool) -> Self {
        return show(animated: animated, superview: nil)
    }
    
    @discardableResult
    public func show(animated: Bool, superview: UIView?) -> Self {
        
        // Set origin before Animation
        if appearFrom == .top {
            self.dialogView.center = CGPoint(x:self.center.x, y:-self.frame.height+self.dialogView.frame.size.height/2)
        }else if appearFrom == .bottom {
            self.dialogView.center = CGPoint(x:self.center.x, y:self.frame.height+self.dialogView.frame.size.height/2)
        }else if appearFrom == .left {
            self.dialogView.center = CGPoint(x:-self.frame.size.width, y:self.frame.height/2)
        }else {
            self.dialogView.center = CGPoint(x:self.frame.size.width, y:self.frame.height/2)
        }
        
        self.backgroundView.alpha = 0
        self.backgroundView.isHidden = false
        if superview != nil {
            superview?.addSubview(self)
        }else {
            let cv = UIViewController.currentViewController()
            if let nav = cv?.navigationController {
                nav.view.addSubview(self)
            }else {
                cv?.view.addSubview(self)
            }
        }
        if animated {
            
            UIView.animate(withDuration: 0.33, animations: {
                if self.clearBackground == true{
                    self.backgroundView.alpha = 0
                }else{
                    self.backgroundView.alpha = 0.6
                }
            })
            // Set origin during Animation
            UIView.animate(withDuration: 0.33, delay:0, usingSpringWithDamping:0.7, initialSpringVelocity:10, options:UIView.AnimationOptions(rawValue:0), animations: {
                self.dialogView.center = self.center
            })
        }else{
            if self.clearBackground == true{
                self.backgroundView.alpha = 0
            }else{
                self.backgroundView.alpha = 0.6
            }
            self.dialogView.center = self.center
        }
        return self
    }
    
    @discardableResult
    public func dismiss() -> Self {
        return dismiss(animated: true)
    }
    
    @discardableResult
    public func dismiss(animated: Bool) -> Self {
        
        self.backgroundView.isHidden = true
        if animated {
            UIView.animate(withDuration: 0.33, animations: {
                self.backgroundView.alpha = 0
            })
            
            UIView.animate(withDuration: 0.33, delay:0, usingSpringWithDamping: 1, initialSpringVelocity:10, options:UIView.AnimationOptions(rawValue:0), animations: {
                
                if self.appearFrom == .top {
                    self.dialogView.center = CGPoint(x:self.center.x, y:-self.frame.height+self.backgroundView.frame.size.height/2)
                }else if self.appearFrom == .bottom {
                    self.dialogView.center = CGPoint(x:self.center.x, y:self.frame.height+self.dialogView.frame.size.height/2)
                }else if self.appearFrom == .left {
                    self.dialogView.center = CGPoint(x:-self.frame.size.width, y:self.frame.height/2)
                }else {
                    self.dialogView.center = CGPoint(x:self.frame.size.width+self.dialogView.frame.size.width, y:self.frame.height/2)
                }
                
                
            }) { (completed) in
                self.removeFromSuperview()
            }
            
        }else{
            self.removeFromSuperview()
        }
        return self
    }
}

extension UIViewController {
    /// 获取当前最顶层的vc
    internal class func currentViewController(base: UIViewController? = UIApplication.shared.keyWindow?.rootViewController) -> UIViewController? {
        if let nav = base as? UINavigationController {
            return currentViewController(base: nav.visibleViewController)
        }
        if let tab = base as? UITabBarController {
            return currentViewController(base: tab.selectedViewController)
        }
        if let presented = base?.presentedViewController {
            return currentViewController(base: presented)
        }
        return base
    }
    
}

进化:提供一个容器

使用者吐槽,你在逗我吗?这玩意怎么用啊,你这也太敷衍了吧,我还要写一大堆代码,才能用。
好吧,那我给你一个默认的容器吧,你只要告诉我中间显示啥就可以了。
调用1:

let base = OrderPayView.nibView().setTotalL("1000")
let al = AlertCustomView<OrderPayView>(base)
    .show(animated: true)

base.payBtn.rx.tap.bind { [unowned al] in
    al.dismiss()
    print("pay click")
}.disposed(by: bag)

调用2:

let base = UILabel()
base.text = "1000"
AlertCustomView(base, false).show(animated: true)

效果:


效果1

效果2

容器代码(AlertCustomView.swift):

/// 自定义弹框
open class AlertCustomView<Base: UIView>: UIView, AlertProtocol {
     
    /// 自定义的组件
    open var base: Base {
        get { return customView }
        set { customView = newValue }
    }
    
    // MARK: - datas
    public var appearFrom: AppearFrom = .right
    public var clearBackground = Bool()
    
    public var closeBtnClick: (() -> Void)?
    
    // MARK: - views
    public var backgroundView = UIView()
    public var dialogView = UIView()
    // 自定义的View
    fileprivate var customView: Base = Base()
    /// 是否隐藏close
    private var isHiddenClose: Bool = true
    private var closeBtn: UIButton! // 关闭
    
    // MARK: - leftStyle
    deinit {
        print("alertType deinit")
    }
    
    fileprivate override init(frame: CGRect) {
        super.init(frame: frame)
    }
    
    public required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
        initViews()
        latoutUI()
    }
    
    public convenience init(_ customView: Base, _ isHiddenClose: Bool = true) {
        
        self.init(frame: UIScreen.main.bounds)
        self.customView = customView
        self.isHiddenClose = isHiddenClose
        initViews()
        latoutUI()
    }
    
    // MARK: - events
    
    // dismiss the alert view
    @objc public func didcloseBtnTapped() {
        dismiss(animated: true)
        closeBtnClick?()
    }
    
    @objc func backgroundViewTap() {
        print("backgroundViewTap")
    }
    
    fileprivate func latoutUI() {
        let cf = base.frame
        
        backgroundView.frame = frame
        addSubview(backgroundView)
        
        addSubview(dialogView)
        dialogView.addSubview(customView)
        dialogView.addSubview(closeBtn)
        
        dialogView.snp.makeConstraints { (make) in
            make.center.equalToSuperview()
        }
        
        customView.snp.makeConstraints { (make) in
            make.size.equalTo(cf.size).priority(.low)
            
            let bottom: CGFloat = isHiddenClose ? 0 : 54.5
            make.edges.equalTo(UIEdgeInsets(top: cf.origin.y, left: cf.origin.x, bottom: bottom, right: 0 ))
        }
        
        closeBtn.snp.makeConstraints { (make) in
            make.bottom.centerX.equalToSuperview()
            make.width.height.equalTo(44)
        }
        
    }
    
    // MARK: - initViews
    public func initViews() {
        
        backgroundView = {
            let backgroundView = UIView()
            backgroundView.backgroundColor = UIColor.black
            return backgroundView
        }()
        let tap = UITapGestureRecognizer(target: self,
                                         action: #selector(backgroundViewTap))

        backgroundView.addGestureRecognizer(tap)
        
        closeBtn = {
            let closeBtn = UIButton()
            closeBtn.setImage(UIImage(named: "close"), for: .normal)
            return closeBtn
        }()
        
        closeBtn.isHidden = isHiddenClose
        closeBtn.addTarget(self, action: #selector(didcloseBtnTapped), for: UIControl.Event.touchUpInside)
        
    }
}

什么,你还是觉得丑,想要一个能改的默认模版?喂喂喂,过分了,兄弟,是你要求要自定义的。
既然写到了这里,我就勉为骑男的再帮你写个默认实现吧。

超进化:提供默认弹框

事先说好,我用到了snpkit,你要是没有导入,那自己计算frame吧

假装是代码
这个类有点长,放最后面吧。

这里要说的一点是提供了一个样式类,都有默认值,需要修改的,设置一下内容的style就好了。
AlertViewStyle.swift

public struct AlertViewStyle {
    public var backgroundViewAlpha: CGFloat = 0.6
    public var dialogViewCornerRadius: CGFloat = 5
    
    public var titleLFont: CGFloat = 18
    public var titleLColor = UIColor.hex("#333333")
    public var messageLFont: CGFloat = 15
    public var messageLColor = UIColor.hex("#333333")
    public var textViewFont: CGFloat = 15
    public var textViewBorderColor = UIColor.hex("#F07D8A")
    public var textViewTextCorlr = UIColor.hex("#333333")
    
    public var cancelBtnTextColor = UIColor.hex("#999999")
    public var cancelBtnTextFont: CGFloat = 16
    public var cancelBtnNormalBgColor = UIColor.hex("#EEEFF1")
//    public var cancelBtnHighlightedBgColor = UIColor.c192451
    
    public var doneBtnTextColor = UIColor.white
    public var doneBtnTextFont: CGFloat = 16
    public var doneBtnNormalBgColor = UIColor.hex("#F07D8A")
    public var doneBtnHighlightedBgColor = UIColor.hex("#F07D8A", alpha: 0.8)
    
    public var cornerRadius: CGFloat = 3
    
    public init() {}
}

效果图:


image.png

image.png

什么,你还要加入业务?!

究极进化:整合业务

调用

let al = AlertTipBusinessView.init(.giveupPay).show()
al.base.doneBtnClick = { [unowned al] in
    al.dismiss(animated: true)
}

详细代码(AlertTipBusinessView.swift):


/// 业务类型
enum TipBusinessType {
    case giveupPay
    case addAddress
    case deleteAddress
    case cancelOrder
    case remindDeliverGoods
    case secendRemind
    
    struct Data {
        var title = ""
        var subTitle = ""
        var certain = ""
        var other = ""
        init(subTitle: String, centain: String = "确认", title: String = "", other: String = "") {
            self.title = title
            self.subTitle = subTitle
            self.certain = centain
            self.other = other
        }
        
        init() {
            self.init(subTitle: "")
        }
    }
    var data: Data {
        var data = Data(subTitle: "")
        switch self {
        case .giveupPay:
            data.title = "确认要离开吗?"
            data.subTitle = "心动美物,看中了就赶紧下手哦!"
            data.certain = "继续购物"
            data.other = "残忍离开"
        case .addAddress:
            data.title = "添加地址"
            data.subTitle = "您尚未添加收件地址"
            data.certain = "添加"
            data.other = "稍后"
        case .deleteAddress:
            data.title = "删除地址"
            data.subTitle = "删除地址后不能恢复,请谨慎操作"
            data.certain = "返回"
            data.other = "删除"
        case .cancelOrder:
            data.title = "确认收货"
            data.subTitle = "请在收到货之后再确认收货"
            data.certain = "确认收货"
            data.other = "取消"
        case .remindDeliverGoods:
            data.title = "提醒发货"
            data.subTitle = "平台已经收到您的提醒,会尽快发货,请注意查收系统消息和短信"
            data.certain = "我知道了"
        case .secendRemind:
            data.subTitle = "平台已经收到您的提醒\n请勿频繁提交发货提醒"
            data.certain = "我知道了"
        }
        return data
    }
}

/// 提示业务逻辑
class AlertTipBusinessView: AlertCustomView<AlertTipView> {
    
    /// 普通用法
    /// AlertTipBusinessView.init(.secendRemind).show()
    ///
    /// 自定义按钮事件
    /// let al = AlertTipBusinessView.init(.secendRemind).show()
    /// al.base.doneBtnClick = { [unowned al] in
    ///    al.dismiss(animated: true)
    /// }
    convenience init(_ businessType: TipBusinessType) {
        let data = businessType.data
        let tipV = AlertTipView(title: data.title, message: data.subTitle, doneBtnTitle: data.certain, cancelBtnTitle: data.other)
        self.init(tipV)
        
        if data.other.isEmpty {
            tipV.doneBtnClick = { [unowned self] in
                self.dismiss()
            }
        }else {
            tipV.cancelBtnClick = { [unowned self] in
                self.dismiss()
            }
        }
    }
}

合体:其他代码

自定义UI代码(AlertTipView.swift):


import Foundation
import UIKit

public class AlertTipView: UIView {
    
    // MARK: - datas
    public var style = AlertViewStyle() {
        didSet {

            titleL.font = UIFont.boldSystemFont(ofSize: style.titleLFont)
            titleL.textColor = style.titleLColor
            
            if titleL.text?.isEmpty ?? true {
                messageL.font = UIFont.systemFont(ofSize: style.titleLFont)
            }else {
                messageL.font = UIFont.systemFont(ofSize: style.messageLFont)
            }
            messageL.textColor = style.messageLColor


            doneBtn.setTitleColor(style.doneBtnTextColor, for: .normal)
            doneBtn.titleLabel?.font = UIFont.boldSystemFont(ofSize: style.doneBtnTextFont)
            doneBtn.setBackgroundImage(UIImage(color: style.doneBtnNormalBgColor),
                                       for: .normal)
            doneBtn.setBackgroundImage(UIImage(color: style.doneBtnHighlightedBgColor),
                                       for: .highlighted)

            cancelBtn.titleLabel?.font = UIFont.boldSystemFont(ofSize: style.cancelBtnTextFont)

            cancelBtn.setTitleColor(style.cancelBtnTextColor, for: .normal)
            cancelBtn.setBackgroundImage(UIImage(color: style.cancelBtnNormalBgColor),
            for: .normal)
        }
    }
    
    public var doneBtnClick: (() -> Void)?
    public var cancelBtnClick: (() -> Void)?

    // MARK: - views
    public var whiteBgV: UIView!

    private var titleL: UILabel!
    private var messageL: UILabel!

    public var cancelBtn: UIButton! // 取消
    public var doneBtn: UIButton!

    // MARK: - leftStyle
    deinit {
        print("alertType deinit")
    }

    public convenience init(title: String, message: String, doneBtnTitle: String, cancelBtnTitle: String = "取消") {
        self.init(frame: CGRect(x: 0, y: 0, width: 265, height: 0))
        self.initialise(title: title, message: message, doneBtnTitle: doneBtnTitle, cancelBtnTitle: cancelBtnTitle)
    }

    public override init(frame: CGRect) {
        style = AlertViewStyle()
        super.init(frame: frame)
        initViews()
    }

    public required init?(coder aDecoder: NSCoder) {
        style = AlertViewStyle()
        super.init(coder: aDecoder)
        initViews()
    }

    private func initialise(title: String, message: String, doneBtnTitle: String, cancelBtnTitle: String = "取消") {

        titleL.text = title
        doneBtn.setTitle(doneBtnTitle, for: UIControl.State.normal)
        cancelBtn.setTitle(cancelBtnTitle, for: UIControl.State.normal)

        messageL.text = message
        
        cancelBtn.addTarget(self, action: #selector(didCancelBtnTapped), for: UIControl.Event.touchUpInside)
        doneBtn.addTarget(self, action: #selector(didDoneBtnTappad), for: UIControl.Event.touchUpInside)

        let hasCancel = !cancelBtnTitle.isEmpty
        hasCancel ? setupTextAlert(!title.isEmpty) : setupNoCancelTextAlert(!title.isEmpty)
        

    }

    // MARK: - events

    @objc public func didDoneBtnTappad() {
        print("doneBtn isTappad,get btn use getdoneBtn()")
        doneBtnClick?()
    }

    // dismiss the alert view
    @objc public func didCancelBtnTapped() {
        cancelBtnClick?()
    }

    // MARK: - initViews
    public func initViews() {
        whiteBgV = {
            let view = UIView()
            view.backgroundColor = UIColor.white
            view.layer.cornerRadius = style.cornerRadius
            view.clipsToBounds = true
            return view
        }()


        titleL = {
            let titleL = UILabel()
            titleL.textAlignment = .center
            titleL.lineBreakMode = NSLineBreakMode.byWordWrapping
            titleL.numberOfLines = 0
            titleL.sizeToFit()
            return titleL
        }()
         messageL = {
            let messageL = UILabel()
            messageL.numberOfLines = 0
            messageL.lineBreakMode = NSLineBreakMode.byWordWrapping
            messageL.textAlignment = .center
            messageL.sizeToFit()
            return messageL
        }()

        cancelBtn = {
            let cancelBtn = UIButton()
            cancelBtn.layer.cornerRadius = style.cornerRadius
            cancelBtn.clipsToBounds = true
            return cancelBtn
        }()

        doneBtn = {
            let doneBtn = UIButton()
            //        doneBtn.backgroundColor =  UIColor.darkText
            doneBtn.layer.cornerRadius = style.cornerRadius
            doneBtn.clipsToBounds = true
            return doneBtn
        }()
    }

    public override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
        print("al touchesBegan")
    }

}

// MARK: - textAlert
extension AlertTipView {

    fileprivate func setupTextAlert(_ hasTitle: Bool = true) {

        self.addSubview(whiteBgV)
        whiteBgV.addSubview(titleL)
        whiteBgV.addSubview(messageL)
        whiteBgV.addSubview(doneBtn)
        whiteBgV.addSubview(cancelBtn)

        whiteBgV.snp.makeConstraints { (make) in
            make.left.top.right.equalToSuperview()
            make.bottom.equalTo(0)
            make.width.equalTo(265)
        }

        titleL.snp.makeConstraints { (make) in
            make.top.equalTo(20)
            make.left.equalTo(15)
            make.right.equalTo(-15)
        }

        messageL.snp.makeConstraints { (make) in
            let top: CGFloat = hasTitle ? 60 : 40
            let bottom: CGFloat = hasTitle ? 70 : 84
            make.edges.equalTo(UIEdgeInsets(top: top, left: 20, bottom: bottom, right: 20))
        }

        doneBtn.snp.makeConstraints { (make) in
            make.height.equalTo(44)
            make.right.bottom.equalTo(0)
            make.width.equalToSuperview().multipliedBy(0.5)
        }

        cancelBtn.snp.makeConstraints { (make) in
            make.left.equalTo(0)
            make.bottom.width.height.equalTo(doneBtn)
        }
        doneBtn.clipsToBounds = false
        cancelBtn.clipsToBounds = false
    }


    fileprivate func setupNoCancelTextAlert(_ hasTitle: Bool = true) {
        
        self.addSubview(whiteBgV)
        whiteBgV.addSubview(titleL)
        whiteBgV.addSubview(messageL)
        whiteBgV.addSubview(doneBtn)
        whiteBgV.addSubview(cancelBtn)

        whiteBgV.snp.makeConstraints { (make) in
            make.left.top.right.equalToSuperview()
            make.bottom.equalTo(0)
            make.width.equalTo(265)
        }

        titleL.snp.makeConstraints { (make) in
            make.top.equalTo(20)
            make.left.equalTo(15)
            make.right.equalTo(-15)
        }

        messageL.snp.makeConstraints { (make) in

            let top: CGFloat = hasTitle ? 60 : 40
            let bottom: CGFloat = hasTitle ? 80 : 96
            make.edges.equalTo(UIEdgeInsets(top: top, left: 20, bottom: bottom, right: 20))
        }

        doneBtn.snp.makeConstraints { (make) in

            make.height.equalTo(36)
            make.bottom.equalTo(-20)
            make.left.equalTo(22.5)
            make.right.equalTo(-22.5)
        }
    }
}

项目中用到的小工具(AlertTools.swift)


import Foundation

//mark UIImage with downloadable content
extension UIImage {
    
    //根据颜色创建图片
    public convenience init?(color: UIColor, size: CGSize = CGSize(width: 1, height: 1)) {
        let rect = CGRect(origin: .zero, size: size)
        UIGraphicsBeginImageContextWithOptions(rect.size, false, 0.0)
        color.setFill()
        UIRectFill(rect)
        let image = UIGraphicsGetImageFromCurrentImageContext()
        UIGraphicsEndImageContext()
        
        guard let cgImage = image?.cgImage else { return nil }
        self.init(cgImage: cgImage)
    }
}

extension UIColor {
    
    public convenience init(hex: String) {
        self.init(hex: hex, alpha:1)
    }
    
    public convenience init(hex: String, alpha: CGFloat) {
        var hexWithoutSymbol = hex
        if hexWithoutSymbol.hasPrefix("#") {
            hexWithoutSymbol = hex.substring(from: 1)
        }
        
        let scanner = Scanner(string: hexWithoutSymbol)
        var hexInt:UInt32 = 0x0
        scanner.scanHexInt32(&hexInt)
        
        var r:UInt32!, g:UInt32!, b:UInt32!
        switch (hexWithoutSymbol.count) {
        case 3: // #RGB
            r = ((hexInt >> 4) & 0xf0 | (hexInt >> 8) & 0x0f)
            g = ((hexInt >> 0) & 0xf0 | (hexInt >> 4) & 0x0f)
            b = ((hexInt << 4) & 0xf0 | hexInt & 0x0f)
            break;
        case 6: // #RRGGBB
            r = (hexInt >> 16) & 0xff
            g = (hexInt >> 8) & 0xff
            b = hexInt & 0xff
            break;
        default:
            
            print("UIColor init error: hex == \(hex), alpha == \(alpha)")
            break;
        }
        
        self.init(
            red: (CGFloat(r)/255),
            green: (CGFloat(g)/255),
            blue: (CGFloat(b)/255),
            alpha:alpha)
    }
    
    public static func hex(_ hex: String) -> UIColor{
         return UIColor(hex: hex)
    }
    
    public static func hex(_ hex: String, alpha: CGFloat) -> UIColor{
        return UIColor(hex: hex, alpha: alpha)
    }

}

// MARK: - substring
extension String {
    /// 返回Index类型
    ///
    public func index(from: Int) -> Index {
        return self.index(startIndex, offsetBy: from)
    }
    /// 裁剪字符串from
    ///
    /// - Parameter from: 从哪里开始
    public func substring(from: Int) -> String {
        let fromIndex = index(from: from)

        return String(suffix(from: fromIndex))
    }

    /// 裁剪字符串to
    ///
    /// - Parameter to: 到哪里结束
    public func substring(to: Int) -> String {
        let toIndex = index(from: to)
        return String(prefix(upTo: toIndex))
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,189评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,577评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,857评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,703评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,705评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,620评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,995评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,656评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,898评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,639评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,720评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,395评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,982评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,953评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,195评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,907评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,472评论 2 342