mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00

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).
18 lines
300 B
Objective-C
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
|