gliyao
4/8/2017 - 7:49 AM

dummyUITableViewDataSource

dummyUITableViewDataSource

@interface DummyUITableViewDataSource : NSObject <UITableViewDataSource>

@end

@implementation DummyUITableViewDataSource

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 40;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return nil;
}

@end