0

我是 Objective-C 的新手,我正在尝试编写一个 iPhone 应用程序。

这是我的代码:

头文件:

#import <UIKit/UIKit.h>

@interface TutorialViewController : UIViewController{
    UILabel *labelText;
    UIImageView *imageView;
}
@property(nonatomic,retain) IBOutlet UILabel *labelText;
@property(nonatomic,retain) IBOutlet UIImageView *imageView;

-(IBAction) click:(id) sender;

@end

这是实现:

#import "TutorialViewController.h"

@implementation TutorialViewController
@synthesize labelText;
@synthesize imageView;

-(void) click:(id)sender {
    imageView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"1.png"]];
    NSString *titleOfButton = [sender titleForState:UIControlStateNormal];
    NSString *newText = [[NSString alloc]initWithFormat:@"%@",titleOfButton];
    // Change Image When Clicking Color Button
    if([titleOfButton isEqualToString:@"Blue"]){
        NSLog(@"Blue");
        UIImage *image = [UIImage imageNamed:@"1.png"];
        imageView.image = image;
        [image release];
    }else{
        UIImage *image = [UIImage imageNamed:@"2.png"];
        imageView.image = image;
        [image release];
        NSLog(@"Else");
    }
    labelText.text = newText;
    [newText release];
}
- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
}
#pragma mark - View lifecycle
- (void)viewDidUnload
{
    [super viewDidUnload];
    self.labelText = nil;
}
-(void) dealloc{
    [labelText release];
    [imageView release];
    [super dealloc];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

@end

当我启动应用程序时,它会引发异常:

'NSInternalInconsistencyException', reason: '-[UIViewController _loadViewFromNibNamed:bundle:] loaded the "TutorialViewController" nib but the view outlet was not set.'

任何人都可以帮我处理我的代码吗?

另外,你能告诉我我的代码中那些糟糕的书面行为吗?

非常感谢 !

4

3 回答 3

3

UIView将Xib 中的根连接到文件所有者的视图。

在此处输入图像描述

于 2012-06-06T06:27:58.143 回答
1

打开您的 .xib 文件,然后在 Objects 中单击 View,然后单击 Connections Inspector,然后从那里 Control + 单击 Reference Outlets 中的圆圈并将其拖到 File's Owner 并从弹出菜单中选择 view ... . :)

连接插座

EDIT:

您的视图是主 UIVIEW,无论您在其中放置还是在层次结构中放置的任何内容都将自动显示。正如您在其中使用了 UIImageView 一样(您可以在 Objects 中看到视图和对象的层次结构,在 PlaceHolders 下的左侧到 xib 列)。当您将 UIView(父视图)连接到文件的所有者时。它显示了包含在主视图中的所有其他视图。因此,当您将主视图与 File's Owner 连接时,它解决了您的问题。

于 2012-06-06T06:31:48.077 回答
0

好吧,错误消息似乎很清楚:

加载了“TutorialViewController”笔尖,但未设置视图出口。

检查 TutorialViewController 笔尖上的插座。似乎视图插座没有连接到任何东西。要修复它,请将您的顶级视图连接到插座(控制拖动)。

于 2012-06-06T06:27:50.893 回答