obj-c 成瘾函数到 NSString

发布于 2024-11-27 05:15:46 字数 524 浏览 1 评论 0 原文

我正在使用将 NSData 转换为十六进制 NSString 的函数声明

@implementation NSString (Hex)

+ (NSString*) hexStringWithData: (unsigned char*) data ofLength: (NSUInteger) len
{
    NSMutableString *tmp = [NSMutableString string];

    for (NSUInteger i=0; i<len; i++)
        [tmp appendFormat:@"%02x", data[i]];

    return [NSString stringWithString:tmp];
}

@end
  • 这个过程的名称是什么?
    (我的意思是如何将这个@implementation调用到我尚未定义的类中,文档在哪里?)
  • 实现的(Hex)部分的目的是什么?

谢谢

I'm using a declaration of function that converts NSData into hexadecimal NSString

@implementation NSString (Hex)

+ (NSString*) hexStringWithData: (unsigned char*) data ofLength: (NSUInteger) len
{
    NSMutableString *tmp = [NSMutableString string];

    for (NSUInteger i=0; i<len; i++)
        [tmp appendFormat:@"%02x", data[i]];

    return [NSString stringWithString:tmp];
}

@end
  • What is name of this procedure?
    (I mean how is called this @implementation into/of class which I haven't defined and where is documentation ?)
  • What purpose has (Hex) part of implementation ?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

李白 2024-12-04 05:15:46

这是一个 类类别提供了一种无需子类化即可向现有类添加额外方法的方法。 Hex 是这个特定类别的名称,因为单个类可以有多个类别。创建类别时应特别考虑,因为可能会覆盖现有或未来的方法。

That is a class cateogry that provides a way to add extra methods to existing classes without the need of subclassing. Hex is the name of this particular category because a single class can have multiple categories. Special consideration should be taken when creating categories because it is possible to override existing or future methods.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文