很快,这很简单。例如,如果我想添加一个自定义 Pinterest UIActivityType:
extension UIActivityType {
static let postToPinterest = UIActivityType(rawValue: "pinterest.ShareExtension")
}
这就是我所要做的。但是,我对如何在objective-c中做到这一点有点困惑。我在想这样的事情,但我不太确定。
static UIActivityType UIActivityTypePostToPinterest = @"myApp.pinterest.ShareExtension";
任何帮助,将不胜感激。