How to write C++ on Mac?

Taking my first C++ class in college. I need to download C++ and my teacher gave us a direct link to download it, but it only works on Windows. Is there a way I can format it to work on my Mac or is there a Mac-friendly version I can download?

iPhone system font

To the delight of font purists everywhere, the iPhone system interface uses Helvetica or a variant thereof. The original iPhone, iPhone 3G and iPhone 3GS system interface uses Helvetica. As first noted by the always excellent DaringFireball, the iPhone 4 uses a subtly revised font called “Helvetica Neue.” DaringFireball also notes that this change is … Read more

Load Animated gif in UIImageView IOS

I would recommend breaking out the frames of that gif and use animatedImageNamed:duration: – you can name them all the similar name with a number change at the end. For instance: loading-1.png loading-2.png loading-3.png etc. Xcode will recognize you want multiple images and will play those through in order. Look at THIS