I'm working on an iPhone tweak where I need to read from and modify the contents of a struct. However, the struct definition is different between iOS 4.1, iOS 4.2, and iOS 5, and I would like to retain compatibility with all of these. The problem is not that I can't do it; the problem is that it doesn't make sense to me to have to rewrite 100+ completely-identical lines of code for each iOS update that happens to change the struct.
Rather than get too involved by actually posting the source from project without any context, I wrote up a simplified example problem. It is a bit too lengthy to include in this post, so I placed it on Pastie here: http://pastie.org/3295629 All the details of the problem are included as comments in that Pastie.
Thanks in advance for any help you might have. I'm totally stumped.
(If you want to see the actual structs I'm dealing with in the iOS project: http://pastie.org/3296564)