看起来像 UITableViewCell 的带有细节披露辅助指示器的 UIButton。
有一个针对 iPhone 和 iPad 的通用应用示例项目。
示例代码
CGRect buttonFrame = CGRectMake(10, 10, buttonWidth, buttonHeight);
DKAccessoryButton *button = [[DKAccessoryButton alloc] initWithFrame:buttonFrame title:@"ButtonTitle"];
[button addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:button];
支持 iOS 6.1 及更高版本。