1

Here's the GitHub link: https://github.com/guicocoa/calendar

I went through the source code and I'm trying to make it "ARC friendly" for use in my project, but I'm not very well versed in ARC (however, I do with to continue using it), so can someone help me out?

Or maybe an easier solution -- is there a linker I can put into my project where it'll just leave that "folder" alone and I can go on my merry way? :)

THanks rnc505

Robby Cohen
  • 497
  • 6
  • 21

2 Answers2

3

Use -fno-objc-arc for the individual files.

See Disable Automatic Reference Counting for Some Files and How can I disable ARC for a single file in a project?

I did this for some libraries that I was using and came back after months of using ARC and cleaned them up myself. You really don't want to do it before you understand ARC well, so your instinct is right on.

Community
  • 1
  • 1
Dan Rosenstark
  • 68,471
  • 58
  • 283
  • 421
1

Or you could go and convert the project to ARC. I forked it on GitHub and did it. I need a project like this so thought it'd be useful for me anyway. Here's my fork:

https://github.com/mattjgalloway/calendar

mattjgalloway
  • 34,792
  • 12
  • 100
  • 110