我正在尝试选择cell
行标签值。我在label
单元格上维护了多个tableview
值。每当我选择单元格时,我需要获取值。我没有太多代码,我使用下面的方法
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
答案 0 :(得分:1)
好的尝试按照以下方法获取您的didselect方法的单元格:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
UILabel *lblValue = (UILabel *)[cell viewWithTag:YourtagValueOfLabelinStoryboard];
NSLog(@"Your Label value:%@",lblValue.text);
}
答案 1 :(得分:1)
您只需在项目中添加此代码..
private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
log.Info("Interface " + CODE + " - sendOrderThreadRoutine started!");
有关详细信息,请访问此link。