mouseover detection in NSTableView's NSCell? - Stack Overflow
NSTableView 上のセルで mouseover イベントを取るには?
以前、この話題は少し扱ったことがある。参考まで。
Cocoaの日々: NSTableView にカスタムセルを表示する (11) ボタンをつける〜NSCellのマウスイベントの扱い
Cocoaの日々: NSTableView にカスタムセルを表示する (12) ボタンをつける〜NSTableViewのサブクラスでマウスイベント処理
Smooth arcs in quartz? - Stack Overflow
Roundrect の角を綺麗に描くには?
対するコメントで
rect = CGRectInset( rect , -0.5 , -0.5 );
I found this at the very same moment. In my case it is positive offset that helped.とあった。
ほー。
いつか試してみよう。
Leopard プレビュー.appの底力 - ザリガニが見ていた...。
開発情報ではないが気になったので。SimpleCapとの連携でプレビューは非常に重宝している。
How to check if a BOOL is null? - Stack Overflow
が
mySTUser.current_user_following = [[results objectForKey:@"current_user_following"]boolValue];
となる。そうならない為のチェック方法について。
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSNull boolValue]: unrecognized selector sent to instance
とか
id vUser = [results objectForKey:@"current_user_following"]; if (vUser != [NSNull null]) { // do stuff... } else { // handle the case appropriately... }
後者の方がいい感じがする。
if (NSValue* val = [results objectForKey:@"current_user_following"]) { mySTUser.current_user_following = [val boolValue]; }
iPhone: static method vs. sharedManager in Objective-C - Stack Overflow
singleton/shared-managed pattern の適用について。
Enforcing a unique instance at runtime is the only valid reason to use the singleton/shared-managed pattern.乱用について戒めのお言葉など。
However, just like the singleton pattern, utility class methods can tempt you into becoming lazy and overusing them in places they don't really belong. Overused, they begin to make the app look like an old school, non-object oriented C collection of independent functions. This breaks encapsulation and modularity and makes your program a tangle of procedural code.
Regex solution for Objective-C - Stack Overflow
- Desktop: RegExKit like Mr. Vile mentioned.
- iPhone: RegExKitLite works great.
Have a try with CSRegex: http://www.cocoadev.com/index.pl?CSRegex
Core Dataの自動マイグレーション | hippos-lab::blog
Core Dataのマイグレーション(手動編) | hippos-lab::blog
調べようと思っていたものだったのでグッドタイミング。あとで読む。