flutter_cocos_view/ios/Classes/FLTCocosView.swift
2025-02-07 09:40:03 +08:00

20 lines
369 B
Swift

//
// FLTCocosView.swift
// flutter_unity_widget
//
// Created by Rex Raphael on 30/01/2021.
//
import Foundation
import UIKit
class FLTCocosView: UIView {
override func layoutSubviews() {
super.layoutSubviews()
if (!self.bounds.isEmpty) {
GetCocosPlayerUtils().ufw?.appController()?.rootView.frame = self.bounds
}
}
}