mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
19 lines
349 B
Objective-C
19 lines
349 B
Objective-C
#import "UIKitUtils.h"
|
|
|
|
#if TARGET_IPHONE_SIMULATOR
|
|
UIKIT_EXTERN float UIAnimationDragCoefficient(); // UIKit private drag coeffient, use judiciously
|
|
#endif
|
|
|
|
@implementation UIView (AnimationUtils)
|
|
|
|
+ (double)animationDurationFactor
|
|
{
|
|
#if TARGET_IPHONE_SIMULATOR
|
|
return (double)UIAnimationDragCoefficient();
|
|
#endif
|
|
|
|
return 1.0f;
|
|
}
|
|
|
|
@end
|