Skip to content

Instantly share code, notes, and snippets.

View kiroskirin's full-sized avatar
🐻
App is a solution not a bunch of feature.

Graisorn Soisakhoo kiroskirin

🐻
App is a solution not a bunch of feature.
View GitHub Profile
@kiroskirin
kiroskirin / swiftAPICallback
Created March 16, 2017 04:30
Swift - API with Delegate
http://www.makeandbuild.com/blog/post/swift-rest-design-myrch-series
@kiroskirin
kiroskirin / AF-update
Created March 12, 2017 19:06
Adobe After Effect CS6 can't run on mac version
http://supportdownloads.adobe.com/product.jsp?product=13&platform=Macintosh
@kiroskirin
kiroskirin / collectionviewCustomLayout
Created March 7, 2017 16:14
iOS - Collection Custom Layout
https://www.credera.com/blog/mobile-applications-and-web/building-a-multi-directional-uicollectionview-in-swift/
http://skeuo.com/uicollectionview-custom-layout-tutorial
@kiroskirin
kiroskirin / SwiftNotification
Created February 15, 2017 18:18
Swift 3 Notification
https://swifting.io/blog/2016/08/22/23-notifications-in-ios-10/
@kiroskirin
kiroskirin / Git submodule
Created February 7, 2017 15:08
Git submodule
http://stackoverflow.com/questions/1260748/how-do-i-remove-a-submodule
@kiroskirin
kiroskirin / SwiftExtensionStyle
Created January 17, 2017 17:56
Swift Extension style but this one is personal style of used so considering before use it
http://blog.ios-developers.io/view-controller-extensions/
https://www.natashatherobot.com/using-swift-extensions/
@kiroskirin
kiroskirin / iOS MKMap Zoom Level
Last active December 8, 2016 07:26
iOS MKMap Zoom Level
http://troybrant.net/blog/2010/01/set-the-zoom-level-of-an-mkmapview/
http://stackoverflow.com/questions/1166444/mkmapview-zoom-and-region
@kiroskirin
kiroskirin / iOS UITableView
Created November 27, 2016 12:50
iOS : UITableView - Remove separator for last table view cell
// Remove sperator for last table view cell
override func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
if indexPath.row == self.stations.count - 1 {
cell.separatorInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: tableView.bounds.width)
}
}
@kiroskirin
kiroskirin / .gitignore
Last active October 25, 2016 04:07
Git Ignore Objective-C - Mac, Xcode
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Build generated
build/
DerivedData/
## Various settings
*.pbxuser