2013-04-26 52 views
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 
+0

你想改变标签的框架或文字。? – 2013-04-27 12:24:35

+0

改变文字... – user2321545 2013-04-27 20:19:30

回答

0

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