Nessuna descrizione

FKCirDetailRequest.h 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // FKCirDetailRequest.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/6/16.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FKCirDetailRequest : NSObject
  10. + (void)reqCirDetailWithID:(NSString *)shareId
  11. identify:(int)identify
  12. delegate:(id <FLNetworkDelegate>)delegate;
  13. + (void)reqCirRelativeListWithID:(NSString *)shareId
  14. startRow:(NSUInteger)startRow
  15. identify:(int)identify
  16. delegate:(id <FLNetworkDelegate>)delegate;
  17. + (void)reqCommentWithID:(NSString *)shareId
  18. replyToUserID:(NSString *)replyToUserID
  19. content:(NSString *)content
  20. identify:(int)identify
  21. delegate:(id <FLNetworkDelegate>)delegate;
  22. + (void)reqRmoveCommentWithID:(NSString *)commentID
  23. identify:(int)identify
  24. delegate:(id <FLNetworkDelegate>)delegate;
  25. + (void)reqLike:(BOOL)like
  26. identify:(int)identify
  27. itemID:(NSString *)itemID
  28. delegate:(id <FLNetworkDelegate>)delegate;
  29. + (void)reqShareUrlWithIdentify:(int)identify
  30. shareID:(NSString *)shareID
  31. deleagate:(id<FLNetworkDelegate>)delegate;
  32. @end