- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我是 iOS 的新手,我在我的 Viewcontroller 上创建了一个表格列表,在我的表格列表行中,我以编程方式添加了一个 UIlabel,没关系。
而且我在我的“self.view”上以编程方式添加了一个 UIbutton。
这里我的主要要求是当我点击那个按钮时,我想更改添加到我的表格行的 UIlabel 背景颜色。
为此,我尝试了下面的代码,但 UIlabel backgroudcolor 没有改变。
请帮帮我。
#import "ViewController.h"
@interface ViewController (){
UILabel *label;
}
@end
@implementation ViewController {
UITableView *tableView;
}
- (void)viewDidLoad
{
[super viewDidLoad];
[self tablelistCreation];
}
//UItableView createtion
-(void)tablelistCreation{
tableView = [[UITableView alloc] initWithFrame:CGRectMake(10, 10, 300, self.420) style:UITableViewStylePlain];
tableView.delegate = self;
tableView.dataSource = self;
[self.view addSubview:tableView];
}
//Delegate methods
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 10;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
cell.textLabel.text = [yourarray objectAtIndex:indexPath.row];
label = [[UILabel alloc] initWithFrame:CGRectMake(40, 30, 300, 50)];
label.backgroundColor = [UIColor clearColor];
[cell.contentView addSubview:label];
return cell;
}
//UIbutton createtion
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button addTarget:self
action:@selector(aMethod:)
forControlEvents:UIControlEventTouchUpInside];
[button setTitle:@"Show View" forState:UIControlStateNormal];
button .backgroundColor = [UIColor orangecolor];
button.frame = CGRectMake(100, 440, 30, 30);
[self.view addSubview:button];
//button action
-(void)Method:(id)sender{
label.backgroundColor = [UIColor redcolor];
}
最佳答案
如果您想更改所有单元格或部分单元格的标签颜色,您的问题不清楚。
无论如何,必须在 cellForRowAtIndexPath 中更改颜色,这是更新/创建单元格的地方。
您可以创建一个变量来通知您是否想要更改颜色,它会在 cellForRowAtIndexPath 上进行检查。
@implementation ViewController {
UITableView *tableView;
bool changeColor;
}
-(void)Method:(id)sender{
changeColor != changeColor;
[tableview reloadData];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
cell.textLabel.text = [yourarray objectAtIndex:indexPath.row];
UILabel label = [[UILabel alloc] initWithFrame:CGRectMake(40, 30, 300, 50)];
[cell.contentView addSubview:label];
}
if (changeColor){
label.backgroundColor = [UIColor redcolor];
}else{
label.backgroundColor = [UIColor clearColor];
}
return cell;
}
如果你想更改特定的标签,你可以创建一个 nsarray 来控制要更改的单元格
关于ios - 当我们点击 UIbutton 时,如何更改 TableList UILabel backGround Color?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34192760/
我正在实现一个适配器来获取 List 和 Hashmap 并将它们分别转换为可扩展 ListView 的标题和子项。在构造函数的 Log 语句中,显示值已成功传输到本地列表。但随后它突然变成空。 我无
我正在使用一个模板 docx 文件来填充每个表上的数据,但在某些情况下我不想要相同的表,无论如何可以使用哪个 XWPFTable 可以删除/删除? 最佳答案 你可以试试 int position =
我是 iOS 的新手,我创建了一个 Expandable-ListView,这里我的主要要求是当我展开单元格时,我想将 UILabel textcolor 更改为“RED”颜色并保留所有单元格UILa
您好,我是 iOS 的新手,我在我的 Viewcontroller 上创建了一个表格列表,在我的表格列表行中,我以编程方式添加了一个 UIlabel,没关系。 而且我在我的“self.view”上以编
我是一名优秀的程序员,十分优秀!