Execute constructor after layout phase
The layout phase is executed in "viewWillAppear" method of "KCSingleViewController". So, the constructor must be executed "viewWillAppear" method of "AMCSingleViewController".
Fixed by following commit:
commit 56adcd46eddce0e476e8a1f3af33973eef00f276 (HEAD -> master, origin/master, origin/HEAD) Author: Steel Wheels Project <wheel@tcn.zaq.ne.jp> Date: Sat Mar 2 16:42:35 2019 +0900 AmberComponent: Fix execution timing to execute constructor of view component By this modification, the constructor of view component is executed
The constructor of the view component must be executed after layout phase. But current implementation execute it before layout phase.