NewsBlur/clients/ios/Classes/NBLoadingCell.h
David Sinclair 27fbf12081 iOS: fixed #929 (rotation issue on iPhone with Safari browser)
This was a curly one!  I also fixed a bunch of Xcode 8 warnings (for
non-third-party code; I'd like to fix the third-party ones to get to
zero warnings, but don't know how you feel about that).
2016-10-05 21:03:32 -07:00

18 lines
300 B
Objective-C

//
// NBLoadingCell.h
// NewsBlur
//
// Created by Samuel Clay on 6/12/13.
// Copyright (c) 2013 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface NBLoadingCell : UITableViewCell
@property (nonatomic, readwrite) BOOL animating;
- (void)animate;
- (void)endAnimation;
@end