作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用以下代码在表格中显示我的数据的千克与磅。
由于某种原因,它无法正常工作,并且给了我巨大的数字。有什么想法吗?
我正在使用 DDUnitConverter (https://github.com/davedelong/DDUnitConverter )
- (void)configureCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath
{
NSManagedObject *managedObject = [self.fetchedResultsController objectAtIndexPath:indexPath];
NSString *repsText = [[managedObject valueForKey:@"reps"] description];
NSNumber *weightInPounds = [NSNumber numberWithFloat:[[managedObject valueForKey:@"weight"]floatValue]];
NSNumber *weightInKilos = [[DDUnitConverter massUnitConverter] convertNumber:weightInPounds fromUnit:DDMassUnitUSPounds toUnit:DDMassUnitKilograms];
NSString *weightText = nil;
NSString *cellText = nil;
BOOL isKgs = [[NSUserDefaults standardUserDefaults] boolForKey:@"wantsKGs"];
if (isKgs == 1)
{
weightText = [[NSString alloc]initWithFormat:@"%i", weightInKilos];
cellText = [[NSString alloc]initWithFormat:@"Set %i: %@ reps at %@ kgs",indexPath.row + 1, repsText, weightText];
}
else
{
weightText = [[NSString alloc]initWithFormat:@"%i", weightInPounds];
cellText = [[NSString alloc]initWithFormat:@"Set %i: %@ reps at %@ lbs",indexPath.row + 1, repsText, weightText];
}
cell.textLabel.text = cellText;
}
最佳答案
哦,这个问题很容易解决。 weightInKilos
和 weightInPounds
是 NSNumber
实例。当您在格式中使用 %i
格式化程序时,这意味着您正在提供一个整数。您最终提供的整数是每个对象的指针值。由于您需要每个 NSNumber 的字符串值,因此请使用实例方法 -stringValue
。
这是基于这些更改的代码的更新版本。
- (void) configureCell: (UITableViewCell *) cell atIndexPath: (NSIndexPath *) indexPath
{
NSManagedObject *managedObject = [self.fetchedResultsController objectAtIndexPath: indexPath];
NSString *repsText = [[managedObject valueForKey: @"reps"] description];
NSNumber *weightInPounds = [NSNumber numberWithFloat: [[managedObject valueForKey: @"weight"] floatValue]];
// Alternatively you could just use ‘[managedObject valueForKey: @"weight"]’ if the ‘weight’ attribute is a number.
NSNumber *weightInKilos = [[DDUnitConverter massUnitConverter] convertNumber: weightInPounds
fromUnit: DDMassUnitUSPounds
toUnit: DDMassUnitKilograms];
BOOL isKgs = [[NSUserDefaults standardUserDefaults] boolForKey:@"wantsKGs"];
NSString *weightText = (isKgs ? [weightInKilos stringValue] : [weightInPounds stringValue]);
cell.textLabel.text = [NSString stringWithFormat: @"Set %i: %@ reps at %@ lbs",indexPath.row + 1, repsText, weightText];
}
请记住,处理对象时必须遵循内存管理规则。当您使用 -init...
方法创建对象时,必须确保释放它。在您的代码中,这意味着 weightText
和 cellText
。
PS:DDUnitConverter 是一个很棒的发现。如果我在未来的项目中需要它,我必须将其添加为书签。
关于iphone - 关于单位换算的简单问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6350426/
您好,我正在尝试在 PHP 中将毫米 (mm) 转换为英寸 (in) 并将千克 (kg) 转换为磅 (lb)。有什么功能可以做到这一点吗?我该怎么做?谢谢。 最佳答案 您可以很容易地编写自己的函数。
我是一名优秀的程序员,十分优秀!