0

I got an app that was running RESTkit 0.10.0 on iOS 5 and an old version of xcode, when I started to work on it on my xcode that its the recent version it gave me a ton of Warning, so I tried to solve them. I got most of them but I think that somethings might not work on the RESTkit anymore, i haven't experienced a fail I just think I messed up some functionalities that I probably dont need. I still have 11 warnings that i dont think i can get rid of and i think that changing to a more updated RESTkit will do the trick. does anyone know how to change the RESTkit in my project with all the settings? Please Help!

Daniel Medina Sada
  • 478
  • 1
  • 5
  • 16

1 Answers1

0

You can find the official upgrade guide here.

Wain
  • 118,658
  • 15
  • 128
  • 151
  • should i only replace the code or is there something else i have to do? – Daniel Medina Sada Jun 24 '13 at 17:35
  • Yes. There are a number of different classes between .1 and .2 so it isn't trivial. – Wain Jun 24 '13 at 18:07
  • now i get this error Undefined symbols for architecture i386: "_OBJC_CLASS_$_RKObjectMapping", referenced from: objc-class-ref in myclassname1.o "_OBJC_CLASS_$_RKObjectManager", referenced from: objc-class-ref in myclassname2.o ld: symbol(s) not found for architecture i386 clang: error: linker command failed with exit code 1 (use -v to see invocation) – Daniel Medina Sada Jun 24 '13 at 18:53
  • I did say the classes had changed and it wasn't trivial. You'll get this kind of build error for each of the classes that no longer exist. – Wain Jun 24 '13 at 18:54
  • i just added the libraries again but you need add only the libRestkit.a which is for iOS if you add any more you'll get another error! – Daniel Medina Sada Jun 24 '13 at 21:18