I hereby claim:
- I am ramshandilya on github.
- I am ramshandilya (https://keybase.io/ramshandilya) on keybase.
- I have a public key ASC1mKD7vWVVGOaqLNF9Kpj0Km0DAabRZWttRueBuxxp0Ao
To claim this, I am signing this object:
| // Created by Vasily Ulianov on 09.02.17, updated in 2019. | |
| // License: MIT | |
| import Foundation | |
| /// Subclass of `Operation` that adds support of asynchronous operations. | |
| /// 1. Call `super.main()` when override `main` method. | |
| /// 2. When operation is finished or cancelled set `state = .finished` or `finish()` | |
| open class AsynchronousOperation: Operation { | |
| public override var isAsynchronous: Bool { |
I hereby claim:
To claim this, I am signing this object:
| # pragma mark - APCBarCharViewDataSource | |
| - (NSInteger)barGraph:(APCLineGraphView *)graphView numberOfPointsInPlot:(NSInteger)plotIndex | |
| { | |
| return 6; | |
| } | |
| - (NSInteger)numberOfPlotsInBarGraph:(APCLineGraphView *)graphView | |
| { | |
| return 1; |
| typedef enum | |
| { | |
| UITableViewAnimationDirectionFromLeft, | |
| UITableViewAnimationDirectionFromRight | |
| }UITableViewAnimationDirection; | |
| @interface UITableView (CellAnimation) | |
| - (void)animateRowsFromLeft; | |
| - (void)animateRowsFromRight; |
| @interface UILabel (Resize) | |
| - (void)resizeToFit; | |
| @end |
| @interface UIView (LoadNib) | |
| + (id)loadInstanceFromNib; | |
| + (id)loadInstanceFromNibWithOwner:(id)owner; | |
| @end |