1

我正在尝试让 UIButton 显示图像并收到标题错误。

另外我想知道为什么()需要它,BSViewController ()因为它是由 XCode 创建的?

//
//  BSViewController.m

#import "BSViewController.h"

@interface BSViewController ()    // Why the "()"?
@end

@implementation BSViewController


- (IBAction) chooseImage:(id) sender{


    UIImageView* testCard = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"ipad 7D.JPG"]]; 
//Property 'window' not found on object of type 'BSViewController *'
    self.window.rootViewController = testCard;
    [self.window.rootViewController addSubview: testCard];
    testCard.center = self.window.rootViewController.center;

     NSLog(@"chooseImage");

}


- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

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

@end



//
//  BSViewController.h

#import <UIKit/UIKit.h>

@class BSViewController;
@interface BSViewController : UIViewController
<UIImagePickerControllerDelegate, UINavigationControllerDelegate>{
    IBOutlet UIButton* chooseImage;
}


- (IBAction) chooseImage:(id) sender;

@end
4

1 回答 1

12

这一行:

    self.window.rootViewController = testCard;

尝试将 imageView 对象指针分配给现有的 viewController 对象指针。你应该得到一个编译器警告。然后在下一行,您有效地尝试将其作为子视图添加到自身,这也可能会引发警告。

() 表示类的类别扩展。它是对您的公共接口的扩展,它允许您声明应为该类私有的实体。您应该将大部分界面放在这里,只需将需要公开的内容保留在 .h @interface 中。

您的 BSViewController 类没有调用属性,window因此您不能将其称为self.window. 但在正常情况下,您应该能够像这样获得对窗口的引用:

    UIWindow* window = [[UIApplication sharedApplication] keyWindow];
    [window.rootViewController.view addSubview: testCard];

但是,如果您只想将 testCard 放入您的 BSViewController 实例中,则不需要这样做。您只需要引用当前实例的视图:

    [self.view addSubview:testCard];
于 2013-01-20T01:22:17.620 回答