forked from benguild/BGTableViewRowActionWithImage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BGTableViewRowActionWithImage.h
28 lines (18 loc) · 1.69 KB
/
BGTableViewRowActionWithImage.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// BGTableViewRowActionWithImage.h
// BGTableViewRowActionWithImage
//
// Created by Ben Guild on 8/20/15.
// Copyright (c) 2015 Ben Guild. All rights reserved.
//
#import <UIKit/UIKit.h>
//! Project version number for BGTableViewRowActionWithImage.
FOUNDATION_EXPORT double BGTableViewRowActionWithImageVersionNumber;
//! Project version string for BGTableViewRowActionWithImage.
FOUNDATION_EXPORT const unsigned char BGTableViewRowActionWithImageVersionString[];
@interface BGTableViewRowActionWithImage : UITableViewRowAction
+ (instancetype)rowActionWithStyle:(UITableViewRowActionStyle)style title:(NSString *)title backgroundColor:(UIColor *)backgroundColor image:(UIImage *)image forCellHeight:(NSUInteger)cellHeight handler:(void (^)(UITableViewRowAction *, NSIndexPath *))handler;
+ (instancetype)rowActionWithStyle:(UITableViewRowActionStyle)style title:(NSString *)title titleColor:(UIColor *)titleColor backgroundColor:(UIColor *)backgroundColor image:(UIImage *)image forCellHeight:(NSUInteger)cellHeight handler:(void (^)(UITableViewRowAction *, NSIndexPath *))handler;
+ (instancetype)rowActionWithStyle:(UITableViewRowActionStyle)style title:(NSString *)title backgroundColor:(UIColor *)backgroundColor image:(UIImage *)image forCellHeight:(NSUInteger)cellHeight andFittedWidth:(BOOL)isWidthFitted handler:(void (^)(UITableViewRowAction *, NSIndexPath *))handler;
+ (instancetype)rowActionWithStyle:(UITableViewRowActionStyle)style title:(NSString *)title titleColor:(UIColor *)titleColor backgroundColor:(UIColor *)backgroundColor image:(UIImage *)image forCellHeight:(NSUInteger)cellHeight andFittedWidth:(BOOL)isWidthFitted handler:(void (^)(UITableViewRowAction *, NSIndexPath *))handler;
@end