Skip to content

Instantly share code, notes, and snippets.

View morinpic's full-sized avatar
:octocat:
Working from home

Kenta Mori morinpic

:octocat:
Working from home
View GitHub Profile
@morinpic
morinpic / interactivePopGestureRecognizer.swift
Created October 16, 2016 07:47
エッジスワイプジェッシャー抑止
override func viewDidLoad() {
super.viewDidLoad()
// エッジスワイプジェスチャー抑止
self.navigationController!.interactivePopGestureRecognizer!.enabled = false
}
override func viewWillDisappear(animated: Bool) {
super.viewWillDisappear(animated)
# editorconfig.org
root = true
[*]
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true