gpt4 book ai didi

ios - 按下按钮时 UIViewcontroller 不打开

转载 作者:行者123 更新时间:2023-11-29 03:21:40 25 4
gpt4 key购买 nike

我在运行和测试我的应用程序时遇到问题。

我一直在使用 GeekyLemon 提供的教程。

第 1 部分:http://www.geekylemon.com/xcode-in-app-purchase-part-1

第 2 部分:http://www.geekylemon.com/xcode-in-app-purchase-part-2

第 3 部分:http://www.geekylemon.com/xcode-in-app-purchase-part-3

第 4 部分:http://www.geekylemon.com/xcode-in-app-purchase-part-4

本教程教您如何在您的应用中使用应用内购买,并使用它为您的应用创建“移除广告”功能。

完成本教程的第二部分后,我决定运行我的代码以查看到目前为止我完成了什么。当我运行我的应用程序时,带有“删除广告”按钮的 View Controller 完美显示。但是,当我单击该按钮时,它会将我带到一个漆黑的屏幕,而不是我希望它转到的 View Controller 。

这是 Storyboard文件中我的两个 View Controller 的屏幕截图。左边的 View Controller 有我的“删除广告”按钮。单击它时,我希望它转到右侧的 View Controller 。

enter image description here

以下是我在模拟器中触摸“删除广告”按钮之前和之后的应用程序屏幕截图:

enter image description here

enter image description here

我的 SettingsViewController.h( Storyboard中我的第一个 View Controller 的自定义类):

#import <UIKit/UIKit.h>
#import <MessageUI/MessageUI.h>
#import <StoreKit/StoreKit.h>
#import "PurchasedViewController.h"

@interface SettingsViewController : UITableViewController < MFMailComposeViewControllerDelegate>

@property (weak, nonatomic) IBOutlet UIBarButtonItem *sidebarButton;

@property (weak, nonatomic) IBOutlet UILabel *Label;
- (IBAction)PurchaseItem:(id)sender;
@property (strong, nonatomic) PurchasedViewController *purchaseController;
-(void)Purchased;

@end

我的 SettingsViewController.m:

#import "SettingsViewController.h"
#import "SWRevealViewController.h"
#define k_Save @"Saveitem"


@interface SettingsViewController ()

@property (nonatomic, strong) NSArray *menuItems;

@end

@implementation SettingsViewController

@synthesize Label;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}

- (void)viewDidLoad
{
[super viewDidLoad];
_sidebarButton.target = self.revealViewController;
_sidebarButton.action = @selector(revealToggle:);
_sidebarButton.tintColor = [UIColor colorWithWhite:0.1f alpha:0.7f];
NSUserDefaults *saveapp = [NSUserDefaults standardUserDefaults];
bool saved = [saveapp boolForKey:k_Save];
if (!saved) {
/// not save code here
} else {
///saved code here
Label.text = @"Item has been purchased.";

// Add pan gesture to hide the sidebar
[self.view addGestureRecognizer:self.revealViewController.panGestureRecognizer];
// Do any additional setup after loading the view.
}
}



- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if(indexPath.row == 0 && indexPath.section == 3){
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://howtocrackthedbq.blogspot.com/"]];
} else if(indexPath.row == 1 && indexPath.section == 1){
if ([MFMailComposeViewController canSendMail]) {
MFMailComposeViewController *mailViewController = [[MFMailComposeViewController alloc] init];
mailViewController.mailComposeDelegate = self;
[mailViewController setSubject:@"[How to crack the DBQ] Support request"];
[mailViewController setToRecipients:[NSArray arrayWithObject:@"moappsco@gmail.com"]];
[self presentModalViewController:mailViewController animated:YES];
}
}

}

- (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error{
[self dismissModalViewControllerAnimated:YES];
}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}



-(void)Purchased {
Label.text = @"Item has been purchased.";
NSUserDefaults *saveapp = [NSUserDefaults standardUserDefaults];
[saveapp setBool:TRUE forKey:k_Save];
[saveapp synchronize];
}
- (IBAction)PurchaseItem:(id)sender {

_purchaseController = [[PurchasedViewController alloc] initWithNibName:nil bundle:nil];
_purchaseController.productID = @"com.moappsco.crackingthedbq.dbq1";
[[SKPaymentQueue defaultQueue] addTransactionObserver:_purchaseController];
[self presentViewController:_purchaseController animated:YES completion:NULL];
[_purchaseController getProductID:self];
}
@end

我的 PurchasedViewController.h(我 Storyboard右侧显示的其他 View Controller 的自定义类):

#import <UIKit/UIKit.h>
#import <StoreKit/StoreKit.h>

@interface PurchasedViewController : UIViewController<SKPaymentTransactionObserver,SKProductsRequestDelegate> {
}
@property (strong, nonatomic) SKProduct *product;
@property (strong, nonatomic) NSString *productID;
@property (strong, nonatomic) IBOutlet UILabel *productTitle;
@property (strong, nonatomic) IBOutlet UITextView *productDescription;
@property (strong, nonatomic) IBOutlet UIButton *buyButton;

- (IBAction)Restore:(id)sender;
- (IBAction)BuyProduct:(id)sender;
- (IBAction)GoBack:(id)sender;

-(void)getProductID:(UIViewController *)viewController;

@end

我的 PurchasedViewController.m:

#import "PurchasedViewController.h"
#import "SettingsViewController.h"

@interface PurchasedViewController ()

@property (strong, nonatomic) SettingsViewController *homeViewController;

@end

@implementation PurchasedViewController

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}

- (void)viewDidLoad
{
[super viewDidLoad];
_buyButton.enabled = NO;
// Do any additional setup after loading the view.
}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

- (IBAction)Restore:(id)sender {
[[SKPaymentQueue defaultQueue] addTransactionObserver:self];
[[SKPaymentQueue defaultQueue] restoreCompletedTransactions];
}

- (IBAction)BuyProduct:(id)sender {
SKPayment *payment = [SKPayment paymentWithProduct:_product];
[[SKPaymentQueue defaultQueue] addPayment:payment];
}

- (IBAction)GoBack:(id)sender {
[self dismissViewControllerAnimated:YES completion:NULL];

}
-(void)paymentQueueRestoreCompletedTransactionsFinished:(SKPaymentQueue *)queue {
[self UnlockPurchase];
}

-(void)getProductID:(SettingsViewController *)viewController;{
_homeViewController = viewController;

if([SKPaymentQueue canMakePayments]){
SKProductsRequest *request = [[SKProductsRequest alloc] initWithProductIdentifiers: [NSSet setWithObject:self.productID]];
request.delegate = self;
[request start];
} else
_productDescription.text = @"Please enable in-app purchases in your settings.";
}


#pragma mark _
#pragma mark SKProductsRequestDelegate

-(void) productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response{
NSArray *products = response.products;
if (products.count != 0) {
_product = products[0];
_buyButton.enabled = YES;
_productTitle.text = _product.localizedTitle;
_productDescription.text = _product.localizedDescription;
} else {
_productTitle.text = @"Product not found.";
}
products = response.invalidProductIdentifiers;

for(SKProduct *product in products) {
NSLog(@"Product not found: %@", product);
}


}
-(void)paymentQueue:(SKPaymentQueue *)queue updatedTransactions:(NSArray *)transactions {
for (SKPaymentTransaction *transaction in transactions) {
switch (transaction.transactionState) {
case SKPaymentTransactionStatePurchased:[self UnlockPurchase];
[[SKPaymentQueue defaultQueue] finishTransaction:transaction];
break;
case SKPaymentTransactionStateFailed:NSLog(@"Transaction Failed");
[[SKPaymentQueue defaultQueue] finishTransaction:transaction];
default:
break;

}
}
}

-(void)UnlockPurchase {
_buyButton.enabled = NO;
[_buyButton setTitle:@"Purchased" forState:UIControlStateDisabled];
[_homeViewController Purchased];
}
@end

如果需要,你可以在Github上下载我的xcode项目:https://github.com/MoAppsCo/iOS-Apps/tree/master/How%20to%20crack%20the%20DBQ

最佳答案

您没有正确实例化您的 Controller 。当 Controller 在 Storyboard中时,您不应该使用 initWithNibName:bundle:(用于基于 xib 的 Controller ),您应该在 Storyboard中为您的 Controller 提供一个标识符,并使用:

_purchaseController = [self.storyboard instantiateViewControllerWithIdentifier:@"YourNameHere"];

当然,您也可以通过将一个 segue 从设置 Controller 连接到该 Controller ,然后使用 performSegueWithIdentifier:sender: 来实现。

关于ios - 按下按钮时 UIViewcontroller 不打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21011153/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com