MXHTTPClient::requestWithMethod has two new blocks to track the upload/download progress.

This commit is contained in:
ylecollen
2015-01-07 09:11:21 +01:00
parent 7c8b0e4975
commit 4195c301de
4 changed files with 29 additions and 3 deletions
+17
View File
@@ -16,6 +16,8 @@
#import "RoomMessageTableCell.h"
#import "MediaManager.h"
#import "PieChartView.h"
@implementation RoomMessageTableCell
@end
@@ -24,8 +26,23 @@
@implementation IncomingMessageTableCell
@end
@interface OutgoingMessageTableCell () {
PieChartView* pieChartView;
}
@property (weak, nonatomic) IBOutlet UIActivityIndicatorView *activityIndicator;
@end
@implementation OutgoingMessageTableCell
-(void)startAnimating {
[self.activityIndicator startAnimating];
}
-(void)stopAnimating {
[self.activityIndicator stopAnimating];
}
- (void)layoutSubviews {
[super layoutSubviews];