使用IBAction访问自定义UITableViewCell中的IBOutlets属性

时间:2013-08-09 16:03:31

标签: ios uitableview ibaction

我是objective-c和iOS的新手

我创建了几个带有插座的自定义表格单元格。但我不确定我是否采用正确的方式。

我想要做的是通过表视图控制器中定义的IBAction获取自定义单元格内的Outlet的属性。

我有一个名为KolonNumberCell的自定义表格单元格,其中包含一个UISlider。 我想在UITableViewController中定义一个名为playNumbers的IBAction。滑块似乎在自定义单元格中正常工作。我可以得到它的价值。

但是,当点击playButton插座时,我无法弄清楚如何获取此滑块的值。

如果你能给我一些信息或给我指路,我将非常感激。

提前致谢

TableController.h

#import <UIKit/UIKit.h>
@class KolonNumberCell;
@class BankoNumberCell;

@interface TableViewController : UITableViewController{
    NSArray *bundleArray;
    IBOutlet KolonNumberCell *kolonCell;
    IBOutlet BankoNumberCell *bankoCell;
    UIButton *playButton;
}

@property (strong) IBOutlet KolonNumberCell *kolonCell;
@property (strong) IBOutlet BankoNumberCell *bankoCell;
@property (nonatomic,retain) NSArray *bundleArray;
@property (nonatomic,retain) IBOutlet UIButton *playButton;

- (void)playNumbers:(id)sender;
@end

TableController.m的一部分

#import "TableViewController.h"

@interface TableViewController ()

@end

@implementation TableViewController
@synthesize bundleArray,kolonCell,bankoCell,playButton;

- (void)viewDidLoad
{
    [super viewDidLoad];

    NSArray *bundle1 = [[[NSBundle mainBundle] loadNibNamed:@"KolonNumberCell" owner:self options:nil] objectAtIndex:0];
    NSArray *bundle2 = [[[NSBundle mainBundle] loadNibNamed:@"BankoNumberCell" owner:self options:nil] objectAtIndex:0];

    bundleArray = [[NSArray alloc] initWithObjects:bundle1,bundle2, nil];

}

- (void)playNumbers:(id)sender
{

    NSLog(@"button");
    // Get the value of the slider in KolonNumberCell... but how?

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    tableView.allowsSelection = NO;

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [bundleArray objectAtIndex:indexPath.section];
    }

    return cell;

}
@end

我的一个customtableviewcell实现文件

#import "KolonNumberCell.h"

@implementation KolonNumberCell
@synthesize label,slider;


- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];

    if (self) {
        // Initialization code

    }
    return self;
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state

    self.backgroundView = [[UIImageView alloc] initWithImage:[ [UIImage imageNamed:@"doubleRound.png"] stretchableImageWithLeftCapWidth:0.0 topCapHeight:0.0]];
}



- (IBAction)sliderChanged:(id)sender
{
    [label setText:[NSString stringWithFormat:@"%i",(int)slider.value]];
}

+ (NSString *)reuseIdentifier {
    return @"Cell";
}


@end

1 个答案:

答案 0 :(得分:0)

您的设计很奇怪,因为您的代码会因更多单元格而变得非常混乱。 Matt Gallagher为Custom TableViews提供了很好的实现。他正在使用TableViewCell作为控制器,并将与cell相关的所有逻辑放在单元类中。 Stack Overflow上的讨论主题:

CustomTableViewController

如果您仍想按自己的方式行事:

  1. 为您的Slider添加标签:slider.tag = x //确保标签是唯一的
  2. 在PlayNumbers中:

     UISlider *slider = (UISlider *)[[[bundleArray objectAtIndex:0] contentView] viewWithTag:x];
     NSLog(@"%i",(int)slider.value);
    
  3. 编辑:感谢您更正语法