12345678910111213141516171819202122232425262728 |
- //
- // ShareViewController.m
- // share
- //
- // Created by 1 on 2019/3/18.
- // Copyright © 2019年 Reese. All rights reserved.
- //
- #import "ShareViewController.h"
- @interface ShareViewController ()
- @end
- @implementation ShareViewController
- - (BOOL)isContentValid {
- // Do validation of contentText and/or NSExtensionContext attachments here
- return YES;
- }
- - (void)didSelectPost {
-
-
- }
- @end
|