• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

IOS Swift : Popup Custom view as alert box

[复制链接]
菜鸟教程小白 发表于 2022-12-13 14:11:22 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

**我用文字和图像设计了自己的 View 。

我想将此显示为警报 View 或仅显示为窗口

如何将 .modalPresentationStyle 用作 .Custom 并实现这一点

我应该使用 ViewController 还是直接显示 View

@IBAction func BtnClickFnc(sender: AnyObject)
{
    let MsgBoxVar = MsgBoxCls()
    MsgBoxVar.modalPresentationStyle = .Custom
    MsgBoxVar.preferredContentSize   = CGSizeMake(200, 400)
    self.presentViewController(MsgBoxVar, animated: true, completion: nil)

}

class MsgBoxCls: UIViewController
{
    override func viewDidLoad()
    {
        view.addSubview(NamVyuCls(frame: CGRectMake(50,50,200,200)))
    }
}


class NamVyuCls: UIView
{
    override public init(frame: CGRect)
    {
        super.init(frame: frame)

        layer.borderWidth = 2
        layer.borderColor = UIColor.darkGrayColor().CGColor
        layer.cornerRadius = 10

        // Code Todo
    }

    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder has not been implemented")
    }
}



Best Answer-推荐答案


var BgdVyuVar: UIView!
var NamVyuVar: NamVyuCls!

@IBAction func BtnKlkFnc(sender: AnyObject)
{
    BgdVyuVar = UIView(frame: view.frame)
    BgdVyuVar.backgroundColor = UIColor(red: 255/255, green: 255/255, blue: 225/255, alpha: 0.5)
    BgdVyuVar.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(self.DsmVyuFnc)))
    self.view.addSubview(BgdVyuVar)

    NamVyuVar = NamVyuCls()
    NamVyuVar.frame = CGRectMake(self.view.frame.width / 2 - 100,self.view.frame.height / 2 - 100,200,200)
    self.view.addSubview(NamVyuVar)

    UIView.animateWithDuration(0.5, delay: 0.1, options: .TransitionNone,
        animations:
        {
            self.view.bringSubviewToFront(self.NamVyuVar)
        },
        completion: nil)
}

func DsmVyuFnc()
{
    BgdVyuVar.removeFromSuperview()
    NamVyuVar.removeFromSuperview()
}

关于IOS Swift : Popup Custom view as alert box,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39763906/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap