Archive for the ‘Mac’ Category

 

mac app from unidentified developer

5月 12th, 2014

とdmgとかでインストールしたファイルをダブルクリックしても開けない時。 右クリックからOpenすると、Open, Cancelの選択ウィンドウが表示されます。 でOpenで。 === mac で経理。個人や小規模の方は是非。 https://sites.google.com/site/ringokeiri/ringokeiritien ringo keiri tienを利用させていただいています。

Read full article | コメントは受け付けていません。

iPhone5s 5c 価格 3社で揃う。

9月 13th, 2013

http://www.gizmodo.jp/2013/09/iphone_5_113.html こう見るとドコモお得ですね。 5sの 32GB 64GBは、ソフトバンク。 なるほど。

Read full article | コメントは受け付けていません。

iphone5s 5c docomo価格情報

9月 13th, 2013

http://k-tai.impress.co.jp/docs/news/20130913_615465.html softbankに比べるとずいぶん高いですね。 iPhone 5c 16GB 一括購入額 8万5680円 iPhone 5s は16GB 32GB 64GB 一括購入額 9万5760円 一括の場合同一価格だそうです。 謎ですね。 結局月額いくらになるのかよくわからないので・・・

Read full article | コメントは受け付けていません。

Softbank iPhone5s 5c 価格表!

9月 13th, 2013

わーい!SoftBankのお姉さんからこれもらったー! pic.twitter.com/OLe723B7mW — 電源ヤクザ♡技適なし (@gitekiprince) September 13, 2013 支払額 iPhone5s 16G 68040円 iPhone5c 16G 52920円 iPhone5c 32G 63000円 完全に5sのほうがお得ですね あとは実際の月額料金が変わるかですね

Read full article | コメントは受け付けていません。

titanium mobile : delete remote image cache

4月 10th, 2013

http://developer.appcelerator.com/question/144356/urgent-how-to-clearreset-titanium-remote-image-cache-android この辺。 http://docs.appcelerator.com/titanium/latest/#!/api/Titanium.Filesystem applicationCacheDirectory : StringREADONLY Path to the application’s internal cache directory. iosのほうはみんな違う書き方をしているけど昔は無かったのかな? Ti.Filesystem.applicationCacheDirectory ios : Applications/00000000-0000-0000-0000-AAAAAAAAAA/Library/Caches/ これなのでiosもあっています。 Libraryの下は Cookies Preferences Caches Private Documents があって、Private Documents/databasename.sql という名前でsqliteが保存されていました。 画像は、普通に ハッシュ値.jpgの拡張子で保存されています。.をみて消している方は、ディレクトリを消しています。 特に問題ないと思いのですが、中に Cache.dbとかあります。手で全消ししても問題ないようです。 (十分テストが必要ですが) androidはexternalのときの処理が必要。 androidの処理はbanzai mobileさんのやり方を利用させていただきます。 http://developer.appcelerator.com/question/144356/urgent-how-to-clearreset-titanium-remote-image-cache-android#answer-251819 ポイントは、/_tmp/remote-cache/ですね。 全消しはなんとなくあれなので、ファイルを消す処理(getFile以外)は、iosと共通で。 iosだけだとこんな感じ dir = Ti.Filesystem.getFile(Ti.Filesystem.applicationCacheDirectory); if( dir.exists() ){  var files = dir.getDirectoryListing();  for( var i in files […]

Read full article | コメントは受け付けていません。

mac preview error:-108 memFullErr Ran out of memory [not enough room in heap zone]

2月 27th, 2013

https://discussions.apple.com/thread/3552945?start=0&tstart=0 -108 memFullErr Ran out of memory [not enough room in heap zone] だそうです。 メモリーを確認して、再起動しました。 macbook airはメモリー増設出来ないみたいですね 通常利用には全く問題有りませんが。

Read full article | コメントは受け付けていません。

openoffice for macを使ってみる

11月 6th, 2012

http://www.openoffice.org/download/ version 3.4.1を入れました。 ((( http://www.openoffice.org/download/other.html から日本語 mac os intel dmgをダウンロード version 3.4.1 OpenOffice.org Language Packというのが入っていて、実行するとopenofficeの場所を指定してくださいと これはlanguage packだけのようなので英語版をまず入れてみます。 language packはメニューだけだと思うので入れなくても良いようです。(わかりません) 日本語表示、入力ともに問題ないようなのでとりあえずこのままで。 ))) google docsだけで問題なければ一番なのですが、印刷(調整)が上手く出来ないのでopenofficeを入れてみました。 Calc(表計算)は、評判良いようですね。 昔ちらっと触ったときは辞めておいた方が良さそうだなと感じたのですが、 3.4.1はなんか使ってみても良さそうだな!という印象です。 (まだ印刷を少ししただけです。) === edit test

Read full article | コメントは受け付けていません。

command+spaceで入力変換 | mac 初心者メモ

9月 11th, 2012

command+spaceで入力変換 option+command+spaceで選択表示なしで次候補に入力変換

Read full article | コメントは受け付けていません。

core data | ios

6月 20th, 2012

Core Data Programming Guide http://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/CoreData/Articles/cdBasics.html#//apple_ref/doc/uid/TP40001650 こんな感じで、保存出来るらしい。sqliteも使えるっぽい。 xcodeでファイル追加 core data ⇒ data modelで .xcdatamodelというのが出来た。 ここに属性とかを入れていくらしい チュートリアルしてみる。 http://developer.apple.com/library/ios/#documentation/DataManagement/Conceptual/iPhoneCoreData01/Introduction/Introduction.html#//apple_ref/doc/uid/TP40008305 emptyプロジェクトで use core data にチェックすると ヘッダーファイルに 01に書かれているように、Delegate.hに @property (nonatomic, retain, readonly) NSManagedObjectContext *managedObjectContext; @property (nonatomic, retain, readonly) NSManagedObjectModel *managedObjectModel; @property (nonatomic, retain, readonly) NSPersistentStoreCoordinator *persistentStoreCoordinator; – (NSURL *)applicationDocumentsDirectory; – (void)saveContext; が生成されている。 http://developer.apple.com/library/ios/#documentation/DataManagement/Conceptual/iPhoneCoreData01/Articles/02_RootViewController.html 適当に入れて、一回目のビルド Undefined symbols for architecture i386: “_OBJC_CLASS_$_CLLocationManager”, referenced […]

Read full article | コメントは受け付けていません。

変数名を一括変換、修正 | xcode

6月 18th, 2012

変数名を間違えていたので修正するときには 変数名を選択 Edit > Refactor > Rename で変換すると変更部分も確認出来ました。

Read full article | コメントは受け付けていません。