gpt4 book ai didi

ios - Storyboard和 customUI 的 drawRect 控制流

转载 作者:行者123 更新时间:2023-11-29 00:57:06 25 4
gpt4 key购买 nike

我的 Storyboard自定义 UI 经常超时,所以我希望为 Storyboard和设备制作单独的 UI。我的问题是,如何知道 drawRect 是由 Xcodestoryboard 执行的。

override func drawRect(rect: CGRect) {

let isStoryboard = ... //< How to know this is called for `storyboard` ?
if (isStoryboard) {
drawForStoryboard()
} else {
drawForCustomUI()
}

}

最佳答案

我从github上找了一段代码。看起来 #if TARGET_INTERFACE_BUILDER 可以区分谁执行了 drawRect

override public func drawRect(rect: CGRect) {
#if TARGET_INTERFACE_BUILDER
drawIBPlaceholder()
#else
drawChart()
#endif
}

关于ios - Storyboard和 customUI 的 drawRect 控制流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37518402/

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