UIViewAnimationCurve 转换为 UIViewAnimationOptions

来源:互联网 发布:万网现在买域名送xyz 编辑:程序博客网 时间:2024/06/05 07:26


static inlineUIViewAnimationOptions animationOptionsWithCurve(UIViewAnimationCurve curve)

{

    UIViewAnimationOptions opt = (UIViewAnimationOptions)curve;

    return opt <<16;

}


http://stackoverflow.com/questions/26939105/keyboard-animation-curve-as-int

0 0