16 lines
218 B
Objective-C
16 lines
218 B
Objective-C
//
|
|
// UIViewController+Share.h
|
|
// Unity-iPhone
|
|
//
|
|
// Created by Hl Zhang on 2023/3/20.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
@interface UIViewController (Share)
|
|
- (void)shareToFacebook:(NSString *)title;
|
|
@end
|