gpt4 book ai didi

iphone - 如果不满足条件,则在 init 中销毁 UIView

转载 作者:行者123 更新时间:2023-11-28 22:36:28 24 4
gpt4 key购买 nike

我正在尝试制作一个自定义警报 View ,检查条件是否为真,如果是,它会自行构建并将自己附加到窗口。但是,如果这种情况不成立,我只想让 View 自行解除分配,最好是在 init 方法中。实现此目标的最佳方法是什么?

最佳答案

在编码时最好遵循 SOLID 原则。

单一性很重要。一个函数应该做一个单一的事情,没有太多的依赖。

所以保留 View 只是为了显示自定义警报。显示的检查必须在外部进行,这样

//Please note this is the algorithm not the exact code in Obj-C.
if(condition==True)
{
//Display customView
}
else
{
//Do nothing
}

关于iphone - 如果不满足条件,则在 init 中销毁 UIView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15833632/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com