无法将UIButtons添加到CPTGraphHostingView的超级视图中

时间:2015-01-18 03:01:00

标签: objective-c core-plot

很抱歉再次提出一个基本问题。如何在UIButton的超级视图中添加CPTGraphHostingView?当按钮直接添加到UIButton时,CPTHostingView的标题会颠倒。我用Google搜索,发现我必须将其添加到CPTGraphHostingView的超级视图中。

我已尝试过下面的代码,但它没有用。谁能告诉我怎么做?谢谢!

UIButton *exp = [UIButton buttonWithType:UIButtonTypeRoundedRect];
exp.frame = CGRectMake( 5, j*30 + 3, 100, 25 );
[exp addTarget:self action:@selector(expClicked:) forControlEvents:UIControlEventTouchUpInside];
[exp setTitle:title forState:UIControlStateNormal];

[[hostingView superview] addSubview:exp];

0 个答案:

没有答案