Swiftgram/LegacyComponents/UIScrollView+TGHacks.m
2017-07-20 15:56:27 +03:00

16 lines
332 B
Objective-C

#import "UIScrollView+TGHacks.h"
#import <objc/message.h>
@implementation UIScrollView (TGHacks)
- (void)stopScrollingAnimation
{
UIView *superview = self.superview;
NSUInteger index = [self.superview.subviews indexOfObject:self];
[self removeFromSuperview];
[superview insertSubview:self atIndex:index];
}
@end