Advertisement
sophtwhere

change log

Nov 1st, 2013
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. Most of these files are works in progress.
  2. As I find bugs or add features I will update them, and note changes in here.
  3.  
  4. (i will put most recent changes at the top, summarised by date)
  5.  
  6.  
  7. 21 November 2013
  8.  
  9. Added "NSStringFromEnum.h" and "NSStringFromEnum.h"
  10.  
  11. note - initial paste of "NSStringFromEnum.h" had a slight to do with renaming a parameter name. fixed.
  12.  
  13. 1. November 2013
  14. NSObject+arcAgnostics.h
  15. NSObject+arcAgnostics.h
  16.  
  17. updated to expressly include __SELF__ and __NOP__ regardless of arc being used, so mixed mode
  18. projects find the helper methods at runtime. (The idea is if you #import NSObject+arcAgnostics.h into a .m file you want to migrate to ARC, it should compile and sort out most issues, except for [super dealloc]. just changed those to [SUPER_DEALLOC] and the code will compile cleanly as arc or non arc.
  19.  
  20. also renamed [NSObject load] to [NSObject test] so it does not always execute on app load.
  21. the test code is not needed, you can remove it if you don't want to use it.
  22. (I am in the process of ensuring all code here is arc agnostic, and testing in my own apps as i go, where these files are used. any issues i will update the files on pastebin. )
  23.  
  24.  
  25. NSData+Base64.m (Matt Gallagher's code)
  26. added a line : "#import NSObject+arcAgnostics.h" to make it ARC agnostic. (has an autorelease in it)
  27.  
  28. NSObject+classSwitch.h
  29. NSObject+classSwitch.m
  30. modified slightly to make it ARC agnostic.
  31.  
  32.  
  33. UIView+cloneSerialization.m
  34. modified slightly to make it ARC agnostic.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement