我无法将 JBBarChartView 加载到我的视图中?我在视图中看不到任何东西

i am not able to load JBBarChartView into my view? I cannot see anything in the view

我在头文件中创建了一个视图。在头文件中也导入 BarChartView。

@property (weak, nonatomic) IBOutlet JBBarChartView *barChartView;

- (void)viewDidLoad
{
JBBarChartView *barChartView = [[JBBarChartView alloc] init];
barChartView.dataSource = self;
barChartView.delegate = self;
[self addSubview:barChartView];
}

我添加了一些内置方法,这些方法将 属性 提供给 JBBarChart

   - (UIColor *)barSelectionColorForBarChartView:(JBBarChartView *)barChartView
{
    return [UIColor greenColor]; // color of selection view
}
- (BOOL)slideNavigationControllerShouldDisplayLeftMenu
{
    return YES;
}
- (UIColor *)barChartView:(JBBarChartView *)barChartView colorForBarViewAtIndex:(NSUInteger)index
{
    return [UIColor greenColor];
}

- (NSUInteger)numberOfBarsInBarChartView:(JBBarChartView *)barChartView
{
    return 4;
}
- (CGFloat)barChartView:(JBBarChartView *)barChartView heightForBarViewAtAtIndex:(NSUInteger)index
{
    return 100.0;
}

非常感谢任何帮助,视图中仍然没有任何内容

只需更新一行

- (void)viewDidLoad
{
JBBarChartView *barChartView = [[JBBarChartView alloc] init];
barChartView.dataSource = self;
barChartView.delegate = self;
[self.view addSubview:barChartView];//Update this line
}