我有一个图片分享应用程序,在您的应用程序朋友之间分享图片 我的要求是当iOS用户从照片库中选择任何照片时,通过弹出窗口显示我的应用程序.
我找到了通过自定义应用程序共享PDF文件的解决方案,但iOS"照片"没有运气.
我也通过这个链接 /sf/ask/648625561/OS-app-not-showing-up-in-other-apps-open-in-dialog 并进行了更改我的应用程序,但似乎没有工作.

我想在我的iOS应用程序中使用Braintree API.
我的应用程序用于出租目的,即请求者用户必须向他想要出租的资产所有者付款.
我检查了以下链接:http: //www.youtube.com/watch?v = 7GlgBFM20I
https://www.braintreepayments.com/developers
http://www.youtube.com/watch?v=2y8Tsml6JYo
但我不知道在哪里使用Braintree或Venmo api提供接收者的帐户详细信息,例如我们可以在PayPal iOS sdk中传递接收者的电子邮件,然后PayPal向使用该电子邮件注册的用户支付金额.
我在Braintree Payment API中搜索的内容与此相同.
任何帮助是极大的赞赏.
提前致谢.
我使用下面的代码:(使用braintree给出的示例代码)
/* Get called when user pay on Pay button on screen. 
   User wil see a form for entering his credit card number, CVV and expiration date. */
-(IBAction)payButtonClicked 
{
    self.paymentViewController =
    [BTPaymentViewController paymentViewControllerWithVenmoTouchEnabled:YES];
    self.paymentViewController.delegate = self;
    [self presentViewController:self.paymentViewController animated:YES completion:nil];
}
// When a user types in their credit card information correctly, the BTPaymentViewController sends you
// …Run Code Online (Sandbox Code Playgroud)