重写ios的uniqueIdentifier方法

发布于 2024-10-20 05:16:45 字数 141 浏览 0 评论 0原文

我需要将不同的 udid 发送到我的数据库以进行一些测试。由于 [UIDevice currentDevice] uniqueIdentifier] 在几乎 15 个地方被调用,因此我很难更改代码然后进行测试。有没有办法暂时覆盖该方法并发送另一个号码作为 udid ?

I need to send a different udid to my database for few testing purpose. Since [UIDevice currentDevice] uniqueIdentifier] is called in almost 15 places it will be very difficult for me to make a code change and then test. Is there a way to override that method for a while and send a another number as udid ?

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

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

发布评论

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

评论(2

终陌 2024-10-27 05:16:45

您可以在 UIDevice 上创建一个类别并覆盖 uniqueIdentifier 以返回随机值。

@interface UIDevice (RandomIdentifier)

@property (nonatomic, retain, readonly) NSString *uniqueIdentifier

@end

@implementation UIDevice (RandomIdentifier)

- (NSString *)uniqueIdentifier
{
    return @"Randomly generated string";
}

@end

You could create a category on UIDevice and override uniqueIdentifier to return a random value.

@interface UIDevice (RandomIdentifier)

@property (nonatomic, retain, readonly) NSString *uniqueIdentifier

@end

@implementation UIDevice (RandomIdentifier)

- (NSString *)uniqueIdentifier
{
    return @"Randomly generated string";
}

@end
百变从容 2024-10-27 05:16:45

您应该能够在 UIDevice 上的类别中覆盖它。创建一个像这样的标头:

@interface UIDevice (overrideId)

@property (nonatomic,readonly,retain) NSString *uniqueIdentifier

@end

然后创建一个像这样的 .m:

@implementation UIDevice (overrideId)

- (NSString *)uniqueIdentifier {
    return @"whatever";
}

@end

在发布之前不要忘记再次删除它。

You should be able to override it in a category on UIDevice. Create a header like this:

@interface UIDevice (overrideId)

@property (nonatomic,readonly,retain) NSString *uniqueIdentifier

@end

And then a .m like this:

@implementation UIDevice (overrideId)

- (NSString *)uniqueIdentifier {
    return @"whatever";
}

@end

Don't forget to remove it again before releasing.

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