Skip to content

Instantly share code, notes, and snippets.

View kenmaz's full-sized avatar

kenmaz kenmaz

View GitHub Profile
@yaakaito
yaakaito / Podfile
Created August 8, 2012 07:58
FBのなんか
platform :ios
dependency "AFNetworking"
@jiro
jiro / gist:5069727
Last active December 14, 2015 10:09
AFIncrementalStoreの紹介(発表メモ)
まず
iCloudログイン
AppStoreで以下をインストール (購入済みタブからまとめてインストールできる)
Xcode
Slack
Sketch
LINE
sourceTree
@calebd
calebd / AsynchronousOperation.swift
Last active April 29, 2023 13:12
Concurrent NSOperation in Swift
import Foundation
/// An abstract class that makes building simple asynchronous operations easy.
/// Subclasses must implement `execute()` to perform any work and call
/// `finish()` when they are done. All `NSOperation` work will be handled
/// automatically.
open class AsynchronousOperation: Operation {
// MARK: - Properties