重写ios的uniqueIdentifier方法
我需要将不同的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 UIDevice 上创建一个类别并覆盖 uniqueIdentifier 以返回随机值。
You could create a category on UIDevice and override uniqueIdentifier to return a random value.
您应该能够在 UIDevice 上的类别中覆盖它。创建一个像这样的标头:
然后创建一个像这样的 .m:
在发布之前不要忘记再次删除它。
You should be able to override it in a category on UIDevice. Create a header like this:
And then a .m like this:
Don't forget to remove it again before releasing.