UGCKitResult.m 252 B

123456789101112
  1. // Copyright (c) 2019 Tencent. All rights reserved.
  2. #import "UGCKitResult.h"
  3. @implementation UGCKitResult
  4. + (instancetype)cancelledResult
  5. {
  6. UGCKitResult *result = [[UGCKitResult alloc] init];
  7. result.cancelled = YES;
  8. return result;
  9. }
  10. @end