ShareViewController.m 407 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ShareViewController.m
  3. // share
  4. //
  5. // Created by 1 on 2019/3/18.
  6. // Copyright © 2019年 Reese. All rights reserved.
  7. //
  8. #import "ShareViewController.h"
  9. @interface ShareViewController ()
  10. @end
  11. @implementation ShareViewController
  12. - (BOOL)isContentValid {
  13. // Do validation of contentText and/or NSExtensionContext attachments here
  14. return YES;
  15. }
  16. - (void)didSelectPost {
  17. }
  18. @end