/**
The receiver does not appear until it begins and is removed from the presentation when it is completed.
*/
kCAFillModeRemoved; // (默认)动画模型的呈现效果直至开始时才显示,并在动画结束后移除。
/**
The receiver does not appear until it begins but remains visible in its final state when it is completed.
*/
kCAFillModeForwards; // 动画模型的呈现效果直至开始时才显示,但在动画结束后仍然显示最后的状态。
/**
The receiver appears in its initial state before it begins but is removed from the presentation when it is completed.
*/
kCAFillModeBackwards; // 动画开始之前,动画模型显示其初始呈现效果,但在动画结束后移除。
/**
The receiver appears in its initial state before it begins and remains visible in its final state when it is completed.
*/
kCAFillModeBoth; // 动画开始之前,动画模型显示其初始呈现效果,并且在动画结束后仍然显示最后的状态。