Yazar: admin

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

Must have iOS libraries

Posted on 10 Eylül 2018 in Programlama by

https://medium.com/app-coder-io/27-ios-open-source-libraries-to-skyrocket-your-development-301b67d3124c Especially I love https://github.com/dzenbot/DZNEmptyDataSet Action sheet controller https://github.com/xmartlabs/XLActionController?utm_source=mybridge&utm_medium=blog&utm_campaign=read_more Expanding collection https://github.com/Ramotion/expanding-collection?utm_source=mybridge&utm_medium=blog&utm_campaign=read_more Swift algorithms https://github.com/raywenderlich/swift-algorithm-club IOS library collection https://github.com/matteocrippa/awesome-swift

ios swift mvvm tutorials

Posted on 02 Ağustos 2018 in Programlama by

You can find useful mvvm tutorials below: https://medium.com/flawless-app-stories/how-to-use-a-model-view-viewmodel-architecture-for-ios-46963c67be1b https://medium.com/@azamsharp/mvvm-in-ios-from-net-perspective-580eb7f4f129 A good video from raywenderlich

Aes encryption

Posted on 29 Haziran 2018 in Programlama by

http://www.moserware.com/2009/09/stick-figure-guide-to-advanced.html

iOS check update

Posted on 26 Haziran 2018 in Programlama by

Following is a swift code to check if update available.

git quick start guide

Posted on 14 Haziran 2018 in Programlama by

This tutorial guides starting git in a clear way: https://git-scm.com/docs/gittutorial

IOS Notes

Posted on 17 Mayıs 2018 in Programlama by

To call a function when application becomes active NotificationCenter.default.addObserver(self, selector: #selector(didBecomeActive), name: NSNotification.Name.UIApplicationDidBecomeActive, object: nil) @objc func didBecomeActive() { print(“did

Must read iOS articles

Posted on 11 Mayıs 2018 in Programlama by

Debugging with xcode-8 https://www.raywenderlich.com/152276/intermediate-debugging-xcode-8 You can find pdf version of the page below Intermediate Debugging with Xcode 8 Adaptive layout

Sending firebase requests over rest client

Posted on 08 Mayıs 2018 in Programlama by

First of all a rest client should be installed to pc. You may use “advanced rest client” extension for chrome

Updating ios package on safari

Posted on 28 Mart 2018 in Programlama by

Just define a url as follows: <a class=” btn-primary btn-lg” href=”itms-services://?action=download-manifest&url=https://abc.com.tr/manifest.plist“>Download App</a> and manifest.plist file should look like as follows:

Java classpath usage

Posted on 20 Kasım 2016 in Programlama by

We will create following classes: firstClass \___ abc.java secondClass \___ xyz.java Create a class with package name as p1.p2.p3 at