0

ビューコントローラー間でデータを渡す方法についていくつかのガイドに従いましたが、 -(void)goToNextView メソッドと同等のもので secondViewController のプロパティを設定する必要があるようです。アプリデリゲートで作成されたタブバーコントローラーを使用しながら、最初から2番目のビューコントローラーのプロパティに値を割り当てる方法を見つけようとしています。

現在のセットアップ:

AppDelegate.m

@synthesize window;

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
   ...
    UITabBarController *tbc = [[UITabBarController alloc] init];
    FirstViewController *vc1 = [[FirstViewController alloc] init];
    SecondViewController *vc2 = [[SecondViewController alloc] init];

    [tbc setViewControllers: [NSArray arrayWithObjects: vc1, vc2, nil]];

    [[self window] setRootViewController:tbc];
    [self.window makeKeyAndVisible];
    return YES;
}
...
@end

FirstViewController.h

#import "SecondViewController.h"

@interface FirstViewController : UIViewController
{
    SecondViewController *vc2;

    IBOutlet UISlider *sizeSlider;
}

@property (nonatomic, retain) SecondViewController *vc2;
@property (strong, nonatomic) UISlider *mySlider;

-(IBAction) mySliderAction:(id)sender;

@end

FirstViewController.m

#import "FirstViewController.h"
#import "SecondViewController.h"

@implementation FirstViewController

@synthesize vc2, mySlider;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];

    if (self) {
        UITabBarItem *tbi = [self tabBarItem];
        [tbi setTitle:@"xib"]; 
    }
    return self;
}
...
- (IBAction) mySliderAction:(id)sender
{
    NSString *str = [[NSString alloc] initWithFormat:@"%3.2f", mySlider.value];
    if(self.vc2 == nil)
    {
        SecondViewController *viewTwo = [[SecondViewController alloc] initWithNibName:nil bundle:nil];
        self.vc2 = viewTwo;
    }
    vc2.sliderValueString = str;  
}
...
@end

SecondViewController.h

#import <UIKit/UIKit.h>
#import "myView.h"

@interface SecondViewController : UIViewController
{   
    NSString *sliderValueString; 
}

@property (copy) NSString *sliderValueString;
@end

SecondViewController.m

#import "SecondViewController.h"

@implementation SecondViewController

@synthesize sliderValueString;

- (id)initWithNibName:(NSString *)nibName bundle:(NSBundle *)bundle
{
    self = [super initWithNibName:nil bundle:nil];
    if (self) {
        UITabBarItem *tbi = [self tabBarItem];
        [tbi setTitle:@"View 2"];
    }
    return self;
}

-(void) loadView
{
    CGRect frame = [[UIScreen mainScreen] bounds];
    myView *view = [[myView alloc] initWithFrame:frame];

    printf("Slider Value: %s", [sliderValueString UTF8String]);

    [self setView: view];
}
...
@end

myView.h と .m は質問とは無関係である可能性がありますが、UIView をサブクラス化する .h と、-(id)initWithFrame:(CGRect)frame でビューを作成する .m があります。

2 番目の VC の printf() が空白であることを考えると、2 番目の VC のプロパティを間違った場所 (mySliderAction) に割り当てていると思います。 2 番目の VC がその SliderValueString が割り当てられない (または残っている) ことを許可するのを妨げている間違ったことをしていますか?

ありがとう!

4

1 に答える 1