Yazar: admin

Kadir gönül. Bilgisayar mühendisi.

How to stop slouching

Posted on 19 Kasım 2018 in Kişisel by

De-Quasimodo Yourself: 6 Exercises to Counteract Slouching

Application life cycle

Posted on 08 Kasım 2018 in Programlama by

Application states could be briefly described as below: iOS Application Life Cycle Example

Design patterns

Posted on 06 Kasım 2018 in Programlama by

https://sourcemaking.com/design_patterns/

IOS Pushkit integration

Posted on 06 Kasım 2018 in Programlama by

Necessary tools: https://github.com/noodlewerk/NWPusher

How to make a c++ class singleton easily

Posted on 06 Kasım 2018 in Programlama by

https://sourcemaking.com/design_patterns/to_kill_a_singleton

Refactoring singleton usage in Swift

Posted on 06 Kasım 2018 in Programlama by

In this post, it is explained how to properly use of singleton in view controllers. It basically uses dependency injection

IOS introduction to delegates

Posted on 04 Kasım 2018 in Programlama by

Understanding Delegates and Delegation in Swift 4

Concurrent vs serial queues in GCD

Posted on 03 Kasım 2018 in Programlama by

There is a good conversation here https://stackoverflow.com/questions/19179358/concurrent-vs-serial-queues-in-gcd An example to running sync call and async queue. Sync task in a

Finding top view controller in swift

Posted on 11 Ekim 2018 in Programlama by

How to find visible view controller?

Thread safe variable usage in singleton (IOS-swift)

Posted on 04 Ekim 2018 in Programlama by

Thread safety is accomplished by having a computed property foo which uses an internalQueue to access the “real” _foo property.