mirror of
https://github.com/zhigang1992/shadowsocks-iOS.git
synced 2026-04-01 22:43:08 +08:00
17 lines
523 B
Objective-C
17 lines
523 B
Objective-C
//
|
|
// Created by clowwindy on 6/6/13.
|
|
// Copyright (c) 2013 clowwindy. All rights reserved.
|
|
//
|
|
// To change the template use AppCode | Preferences | File Templates.
|
|
//
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
typedef void (^SimpleTableViewSourceSelectionBlock)(NSObject *value);
|
|
|
|
@interface SimpleTableViewSource : NSObject<UITableViewDataSource, UITableViewDelegate>
|
|
|
|
-(id)initWithLabels:(NSArray *)labels values:(NSArray *)values initialValue:(NSObject *)value selectionBlock:(SimpleTableViewSourceSelectionBlock)block;
|
|
|
|
@end |