I'm creating an app with Document Based App template but I would like to customize it. Can I add a new tab link to uiviewcontroller?Now there are two tabs (Recents and Browser), i want a 3rd tab. Is it posible?Thanks
Post
Replies
Boosts
Views
Activity
Hi,I need use the method paymentQueue:shouldAddStorePayment:forProduct for buy from Appstore. But I open the application with this link, I receive a message in console:Tried to send purchase intent: <productID> to delegate, delegate does not respond to method paymentQueue:shouldAddStorePayment:forProductThis is the link:itms-services://?action=purchaseIntent&bundleId=<bundleID>&productIdentifier=<productID>Docs:https://developer.apple.com/documentation/storekit/in-app_purchase/testing_promoted_in-app_purchaseshttps://developer.apple.com/documentation/storekit/skpaymenttransactionobserver/2877502-paymentqueue?language=objcMy code:AppDelegate.h#import <StoreKit/StoreKit.h>
@interface AppDelegate : CDVAppDelegate <SKPaymentTransactionObserver, SKPaymentQueueDelegate> {}
@endAppDelegate.m@implementation AppDelegate
- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions
{
return [super application:application didFinishLaunchingWithOptions:launchOptions];
}
- (BOOL)paymentQueue:(SKPaymentQueue *)queue shouldAddStorePayment:(SKPayment *)payment forProduct:(SKProduct *)product
{
return true;//Never is executed
}Thanks
Hi,
I have implemented the VNDocumentCameraViewController controller to scan documents. Everything it's okay and working very good. But I would like to customize the view when you take a scan.
For example change the button to take a photo.
is it possible to do it?
Thanks