iOS 7:无法连接到IBOutlets,可能是因为我正在使用UITableViewController

时间:2014-01-21 01:57:15

标签: xcode ios7 iboutlet

我无法创建任何IBOutlets。我正在使用tableviewcontroller而不是viewcontroller。 当我单击TableViewController时,该类是UITableViewController,我无法改变它。

这是我的ViewController.h代码:

//  ViewController.h
//  Tips4
//
//  Created by Meghan on 1/20/14.
//  Copyright (c) 2014 Meghan. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>

@property (strong, nonatomic) IBOutlet UILabel *sliderDisplay;
@property (strong, nonatomic) IBOutlet UITextField *tempText;
@property (strong, nonatomic) IBOutlet UILabel *billTotal;
@property (nonatomic, strong) IBOutlet UISlider *slider;

- (IBAction)sliderValueChanged:(id)sender;

@property (nonatomic) float answer;
@property (nonatomic) float answerTwo;



@end

这是我的ViewController.m:

//  ViewController.m
//  Tips4
//
//  Created by Meghan on 1/20/14.
//  Copyright (c) 2014 Meghan. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 10;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *tipsTableIdentifier = @"TipsTableCell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:tipsTableIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:tipsTableIdentifier];
    }

    return cell;
}


- (IBAction)sliderValueChanged:(id)sender
{
    float theText = [_tempText.text floatValue];
    _answer = (_slider.value * theText) / 100;
    _answerTwo = _answer + theText;
    _sliderDisplay.text = [NSString stringWithFormat:@"%1.2f", _answer];
    _billTotal.text = [NSString stringWithFormat:@"%1.2f", _answerTwo];
}

- (void)viewDidLoad
{
    [super viewDidLoad];
     _tempText.keyboardType = UIKeyboardTypeDecimalPad;

    // 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

1 个答案:

答案 0 :(得分:2)

如果您使用的是TableViewController,则您的类必须从UITableViewController继承。那是什么时候它会出现在Identity Inspector中,你可以在这里将你的班级从UIViewController更改为你的班级。之后,您应该能够连接IBOutlets。

为此,只需替换当前行

即可
@interface ViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>

@interface ViewController : UITableViewController 

现在,您需要将调用super的init方法添加到.m文件中。

- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle:style];
    if (self) {
        // Custom initialization
    }
    return self;
}

我希望这样做。

此外,有时,代码中的更改不会显示在故事板Identity Inspector中。在这种情况下,您可以退出Xcode窗口并再次打开项目。就是这样。

或者,如果您使用ViewController,您的类可以从UIViewController继承。然后,将TableView添加到View中,并将UITableView实例添加到控制器文件中(创建IBOutlet)。在这种情况下,您的.h文件需要添加UITableViewDelegateUITableViewDataSource来填充表格,您的.m文件需要实现所需的方法(Xcode会警告您这一点)。