16 lines
262 B
Objective-C
16 lines
262 B
Objective-C
//
|
|
// TLPictureCarouselProtocol.h
|
|
// TLChat
|
|
//
|
|
// Created by 李伯坤 on 16/4/20.
|
|
// Copyright © 2016年 李伯坤. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@protocol TLPictureCarouselProtocol <NSObject>
|
|
|
|
- (NSString *)pictureURL;
|
|
|
|
@end
|