CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.

DKAccessoryButton 1.0.1

DKAccessoryButton 1.0.1

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by Dennis Kutlubaev.




  • By
  • Denis Kutlubaev

UIButton, that looks like UITableViewCell with a detail disclosure accessory indicator.

ScreenShot

How to use

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];

Supported iOS Versions

It supports iOS 6.1 and higher.