18 lines
300 B
Objective-C
18 lines
300 B
Objective-C
//
|
|
// MyCustomCell.m
|
|
// TUIKitDemo
|
|
//
|
|
// Created by annidyfeng on 2019/6/10.
|
|
// Copyright © 2019 Tencent. All rights reserved.
|
|
//
|
|
|
|
#import "TUIGroupCreatedCell.h"
|
|
|
|
@implementation TUIGroupCreatedCell
|
|
|
|
- (void)fillWithData:(TUIGroupCreatedCellData *)data {
|
|
[super fillWithData:data];
|
|
}
|
|
|
|
@end
|