很抱歉再次提出一个基本问题。如何在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];