0

如何从水平滚动条更改标签?我有一个包含球员图片的页面,我想更改每张图片的标签,请帮助我,我找不到答案!对不起我的英语...

@interface KLViewController ()


@end

@implementation KLViewController

- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
[self.navigationController.navigationBar setTintColor:[UIColor colorWithRed:10/255.0 green:37/255.0 blue:70/255.0 alpha:1]];

//Initialize the informtion to feed the control
NSString* plistPath = [[NSBundle mainBundle] pathForResource: @"SectionData"
                                                      ofType: @"plist"];
// Build the array from the plist
NSArray* controlData = [[NSArray alloc] initWithContentsOfFile:plistPath];

// Do any additional setup after loading the view, typically from a nib.
self.horizontalSelect = [[KLHorizontalSelect alloc] initWithFrame: self.view.bounds];
[self.horizontalSelect setTableData: controlData];
[self.horizontalSelect setDelegate:self];
//Customize the initially selected index - Note section is redundant but should always be 0
[self.horizontalSelect setCurrentIndex:[NSIndexPath indexPathForRow:4 inSection:0]];

//Add the view as a subview
[self.view addSubview: self.horizontalSelect];

}


-(void) horizontalSelect:(id)horizontalSelect didSelectCell:(KLHorizontalSelectCell*)    cell {
    NSLog(@"Selected Cell: %@", cell.label.text);   


}

- (void)dealloc {
    [_players release];
    [super dealloc];
}
- (void)viewDidUnload {
    [self setPlayers:nil];
    [super viewDidUnload];
}
@end
4

1 回答 1

0

我希望你已经解决了。您必须将标签的文本更改为 KLHorizo​​ntalSelect 的类。在您在 plistPath 字符串中发布的代码中,有您的答案。您可以看到标签的名称和图像的名称文件都在“SectionData.plist”文件中。打开此文件并更改您想要的内容。

于 2013-09-30T09:40:11.290 回答