About me
- Name
- Bartek Wilczyński
- Location
- Warsaw, Poland
- Bio
- Full-time .NET architect / developer and free-time Indie iPhone developer
-
Recent Posts
Categories
Archives
Tag Archives: obj-c
3 ways to implement Singleton pattern in Objective-C
Singleton pattern is used when you need to ensure that only one instance of a class can be instantiated and you need a global access to it. The most widely used implementation of this pattern in .NET is the following (from MSDN): public sealed class Singleton { private static readonly Singleton instance = new Singleton(); [...]



Easier iOS table views with ios-datatable