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