CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Dec 2014 |
Maintained by Dennis Kutlubaev.
UIButton, that looks like UITableViewCell with a detail disclosure accessory indicator.
There is a sample project of a universal app for iPhone and iPad.
Sample Code:
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];
It supports iOS 6.1 and higher.