iOS的7:无法连接到IBOutlets,可能是因为我使用的UITableViewControlle

2019-10-19 06:10发布

我不能创造任何IBOutlets。 我使用的是tableviewcontroller,而不是一个视图控制器。 当我点击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

Answer 1:

如果您使用的是TableViewController,你的类必须从继承UITableViewController 。 那什么时候会在身份检查显示,这是在您更改类UIViewController上您的课。 在此之后,你应该能够连接IBOutlets。

要做到这一点,只需更换当前的行

@interface ViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>

@interface ViewController : UITableViewController 

现在,你需要添加调用超级init方法,以.m文件。

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

我希望这将做到这一点。

此外,有时,在代码的变化不会在故事板督察的身份露面。 在这种情况下,你可以退出Xcode的窗口,然后再次打开该项目。 这就行了。

另外,如果您使用视图控制器,你的类可以从一个继承UIViewController 。 然后添加一个TableView中您查看和一个UITableView实例添加到控制器文件(创建一个IBOutlet)。 在这种情况下,您的.h文件需要添加UITableViewDelegateUITableViewDataSource填充表和你.m文件需要实现所需的方法(Xcode中会警告你这一点)。



文章来源: iOS 7: Cannot connect to IBOutlets, probably because I'm using UITableViewController