-
Notifications
You must be signed in to change notification settings - Fork 3
Home
Evgeniy Safronov edited this page Oct 24, 2017
·
3 revisions
- Если используются FESection с кастомными view, к которым нужно получать доступ, при выполнении refresh() нужно самостоятельно следить, чтобы эти view не пересоздавались. Например:
var customView: UIView?
func getSections() -> [FESection] {
if customView == nil {
customView = UIView()
}
let section = FESection(view: customView!, height: 40)
return [section]
}