Skip to content

Instantly share code, notes, and snippets.

View himaratsu's full-sized avatar

himaratsu himaratsu

  • Indivisual
  • Tokyo, Japan
View GitHub Profile
@himaratsu
himaratsu / command_line_usage.md
Created October 12, 2014 07:20
iOS.zip command line tool

iOS.zip command line tool

Install

$ curl -O https://raw.githubusercontent.com/ioszip/ioszip.github.io/command-line-tool/ioszip.github.io.rb >  /usr/local/Library/Formula/ioszip.github.io.rb; brew install ioszip.github.io

Usage

@himaratsu
himaratsu / swift_cast.md
Created October 14, 2014 02:47
swift_cast

CGFloat convert int みたいなエラーが出るとき

stampNineView.frame = CGRectMake(self.frame.size.width * CGFloat(i), 0, self.frame.size.width, self.frame.size.width)

Swiftは型に厳しいので、 self.frame.size.width * i とかしてたら怒られる。
Objective-C時代は暗黙的にキャストしてくれてたので。