Skip to content

Instantly share code, notes, and snippets.

View chototsu's full-sized avatar

KOBAYASHI Kazuhiko chototsu

View GitHub Profile
@chototsu
chototsu / file0.txt
Created February 23, 2014 13:21
Scala/JavaでiOSアプリを作るtipsその2 ref: http://qiita.com/chototsu/items/b2b9196434a3eaead614
$ sbt
> ios/xcodebuild
public interface AppListener {
public void selectItemFromList(int x, int y, int width, int height, String title, List<String> model, ListItemSelectedCallback callback);
public void showIndicator(String msg);
public void stopIndicator();
public void setShowMainPanel(boolean flag);
}
ibtool --errors --warnings --notices --output-format human-readable-text --compile TestViewController.nib MyFourthApp/TestViewController.xib
@chototsu
chototsu / file0.m
Created November 13, 2013 01:44
RoboVMからネイティブコードを呼び出す。 ref: http://qiita.com/chototsu/items/f64a866f0d78449e5c92
@interface Test : NSObject
- (void) hello;
@end
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"