mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 16:58:38 +09:00
25 lines
727 B
C
25 lines
727 B
C
|
|
//
|
||
|
|
// NSMutableArray+SWUtilityButtons.h
|
||
|
|
// SWTableViewCell
|
||
|
|
//
|
||
|
|
// Created by Matt Bowman on 11/27/13.
|
||
|
|
// Copyright (c) 2013 Chris Wendel. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
@interface NSMutableArray (SWUtilityButtons)
|
||
|
|
|
||
|
|
- (void)sw_addUtilityButtonWithColor:(UIColor *)color title:(NSString *)title;
|
||
|
|
- (void)sw_addUtilityButtonWithColor:(UIColor *)color attributedTitle:(NSAttributedString *)title;
|
||
|
|
- (void)sw_addUtilityButtonWithColor:(UIColor *)color icon:(UIImage *)icon;
|
||
|
|
- (void)sw_addUtilityButtonWithColor:(UIColor *)color normalIcon:(UIImage *)normalIcon selectedIcon:(UIImage *)selectedIcon;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
|
||
|
|
@interface NSArray (SWUtilityButtons)
|
||
|
|
|
||
|
|
- (BOOL)sw_isEqualToButtons:(NSArray *)buttons;
|
||
|
|
|
||
|
|
@end
|