mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-03 22:56:57 +02:00
MXHTTPClient::requestWithMethod has two new blocks to track the upload/download progress.
This commit is contained in:
@@ -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];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user