-> create a PieChartView to be reusable

-> add a Pie chart when a media is downloading to display the download progress.
This commit is contained in:
ylecollen
2015-01-06 18:12:45 +01:00
parent 37c3860cb5
commit 7c8b0e4975
8 changed files with 309 additions and 87 deletions
+3 -5
View File
@@ -16,16 +16,14 @@
#import <UIKit/UIKit.h>
#import "CustomImageView.h"
#import "PieChartView.h"
@class MXRoomMember;
@class MXRoom;
// Room Member Table View Cell
@interface RoomMemberTableCell : UITableViewCell
{
//
CAShapeLayer* backgroundContainerLayer;
CAShapeLayer* powerContainerLayer;
@interface RoomMemberTableCell : UITableViewCell {
PieChartView* pieChartView;
}
@property (strong, nonatomic) IBOutlet CustomImageView *pictureView;
@property (weak, nonatomic) IBOutlet UILabel *userLabel;