我想請教關於 InAppSettingsKit(PSMultiValueSpecifier) 的問題,


我現在使用上遇到一個狀況,是就 PSMultiValueSpecifier 的屬性,當使用者點擊之後,並不會出現並不會出現 Child Menu ,就是另外一個 Table View ,讓使用來選擇,我是使用 Storyboard 來做,我的程式碼如下:

.h
代碼:

#import "IASKAppSettingsViewController.h"


*interface View_Setup : IASKAppSettingsViewController<IASKSettingsDelegate, UIAlertViewDelegate>


*end
.m
代碼:
#import "View_Setup.h"
#import "IASKSpecifier.h"
#import "AppDelegate.h"


*interface View_Setup ()
{
    AppDelegate *appDelegate_;
}
*property(nonatomic, strong)UIActivityIndicatorView *actIndicator;
*end


*implementation View_Setup


*synthesize actIndicator;




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


- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    self.delegate = self;
    appDelegate_ = (AppDelegate*)[UIApplication sharedApplication].delegate;
    
}


-(void)viewDidUnload
{
    [self setActIndicator:nil];
    [super viewDidUnload];
}


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


- (void)settingsViewControllerDidEnd:(IASKAppSettingsViewController*)sender
{
//    [self dismissViewControllerAnimated:YES completion:nil];
}


*end
執行的結果如下圖,都可以正常執行,就是點選了 PSMultiValueSpecifier 的選項不會出現 Child menu table 讓使用者選擇,可否問,是不是我哪裡沒有注意到呢?

謝謝您。