xcode6 - Xcode's IB cannot show up my custom view? -
xcode's ib cannot show custom view?
recently, updated xcode version 6.4 (6e35b) , encounter ib problem.
before update xcode, custom view (extend uiview) can show in ib.
required init(coder adecoder: nscoder) { // 1. setup properties here // 2. call super.init(coder:) super.init(coder: adecoder) // 3. setup view .xib file xibsetup() }
currently, cannot see custom view in ib. can work during run time.
how can make them show in ib?
finally, got solution. not caused update of xcode. caused closed "auto-refresh" feature within ib.
so solution is: xcode -> editor -> refresh views think see custom view within ib.
Comments
Post a Comment