You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
377 B
20 lines
377 B
//
|
|
// 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) {
|
|
//todo
|
|
GetCocosPlayerUtils().ufw?.getCocosView()?.frame = self.bounds
|
|
}
|
|
}
|
|
}
|
|
|