(child: View)
| 7 | nativeViewProtected: UIView; |
| 8 | |
| 9 | public addChild(child: View): void { |
| 10 | super.addChild(child); |
| 11 | this.requestLayout(); |
| 12 | } |
| 13 | |
| 14 | public insertChild(child: View, atIndex: number): boolean { |
| 15 | if (super.insertChild(child, atIndex)) { |