
カテゴリ: 仕事効率化
価格: ¥170
要望の多かった履歴の再編集機能搭載の他、アイコンを一新しました。
Evernoteを使っている方は是非お試し下さい。
サポートページ (facebook)
EverGear | Facebook
iOS/iPhone/iPad/MacOSX プログラミング, Objective-C, Cocoaなど
2012年6月27日水曜日 | Published in EverGear | 0 コメント

2012年6月6日水曜日 | Published in EverGear | 0 コメント

(1) 単純起動 jp.lakesoft.EverGear:// (2) ノート新規作成 jp.lakesoft.EverGear://draft/add 新規作成用パラメータ mode:0=テキスト入力 | 1=撮影モード | 2=カメラロール | 3=メモ入力 ※省略時は 0 指定と同じ text:テキストの初期値(要UTF-8によるURLエンコード)
jp.lakesoft.EverGear://draft/add?mode=1&text=Hello
2012年5月18日金曜日 | Published in アプリ紹介 | 2 コメント
+ーーーーーーーーーー+ | テキスト | +ーーーーーーーーーー+ | ログ1 | | ログ2 | | : | +ーーーーーーーーーー+ | 写真1 | | 写真2 | | : | +ーーーーーーーーーー+
2012年3月6日火曜日 | Published in iOS 5.0, アプリ連携 | 0 コメント
self.documentInteractionController =
[UIDocumentInteractionController interactionControllerWithURL:url];
self.documentInteractionController.delegate = self;
[self.documentInteractionController presentOptionsMenuFromBarButtonItem:
self.sendApplicationButtonItem animated:YES];
実名:UserDocument.pdf キャッシュ名:js9798sfs8df9s9fsd.pdfキャッシュファイルのURLをそのまま他のアプリへ渡すと "js9798sfs8df9s9fsd.pdf" みたいな名前で扱われて使い勝手が悪い。できれば渡した先のアプリでも "UserDocument.pdf" として扱わせたい。
This property contains the filename without any preceding path information. The default value of this property is derived from the path information in the URL property. You can change the value of this property as needed if you want to associate a different name with the file.ところが nameプロパティを設定しても送った先のアプリでは使われず "js9798sfs8df9s9fsd.pdf" のまま。
if ([fileManager createSymbolicLinkAtURL:cacheURL withDestinationURL:newURL error:&error]) {
NSLog(@"%s|%@", __PRETTY_FUNCTION__, @"a symbolic link is created");
} else {
NSLog(@"%s|%@", __PRETTY_FUNCTION__, error);
}if ([fileManager linkItemAtURL:cacheURL toURL:newURL error:&error]) {
NSLog(@"%s|%@", __PRETTY_FUNCTION__, @"a hard link is created");
} else {
NSLog(@"%s|%@", __PRETTY_FUNCTION__, error);
}- (void)documentInteractionController:(UIDocumentInteractionController *)controller
willBeginSendingToApplication:(NSString *)application
{
// ハードリンク作成 ....
}
- (void)documentInteractionController:(UIDocumentInteractionController *)controller
didEndSendingToApplication:(NSString *)application
{
// ハードリンク削除 ....
}送るメニューを出す手順の中で呼び出す [UIDocumentInteractionController interactionControllerWithURL:url] の時点では実体が存在する必要はない。先ほどのデリゲート documentInteractionController:willBeginSendingToApplication: で作っても間に合った。2012年1月5日木曜日 | Published in iOS 5.0 | 0 コメント
UIBarButtonItem *item1 = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemAdd
target:self
action:@selector(touched:)];
UIBarButtonItem *item2 = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemCamera
target:self
action:@selector(touched:)];
self.navigationBar.topItem.rightBarButtonItems =
[NSArray arrayWithObjects:item1, item2, nil];
こうなる。2012年1月3日火曜日 | Published in Tips | 0 コメント
2012年1月2日月曜日 | Published in | 0 コメント
(今まで) ・基本的にライブラリを使わず手作り ・知らない技術は網羅的に検証しながら進める ・その成果を基本的にブログで公開 ・1つのアプリに時間をかける
(今年) → 他の人のライブラリを積極的に利用する → 丁寧な検証はやらない → ブログは最小限に → 1つのアプリに時間をかけない