Categories
- Code (3)
- Code Snippets (12)
- git (1)
- Hardware (1)
- News (5)
- Objective-C (6)
- Precompiled (4)
- Programming (1)
- Review (1)
- Swift (9)
- Swift Standard Library (3)
- Tips (3)
- Tutorial (22)
- Uncategorized (3)
- WWDC (1)
-
Recent Posts
Meta
-
Author Archives: idz
Precompiled Speex Libraries for iOS
Ever since I produced the Ogg and Vorbis libraries, I have been receiving requests to compile other open source media libraries. I’d love to be able to fulfill all such requests but, unfortunately, that just isn’t possible. Today I am … Continue reading
Code: Playing Ogg Vorbis Files on iOS
Often I finish the code for a tutorial or blog article long before I ever get around to writing the article. I know this frustrates some of my readers as they wait for the next in a series of articles … Continue reading
Posted in Code, Objective-C
Leave a comment
Tip: Ensuring ARC is Enabled at Compile Time.
If you still have legacy code around that is not compiled with Automatic Reference Counting (ARC), accidentally adding some new code that assumes that ARC is enabled can lead to extensive memory leaks. This simple test, placed in a .m … Continue reading
Posted in Code, Code Snippets, Objective-C, Tips
Tagged ARC, Automatic Reference Counting, Memory Management
Leave a comment