クラスを %hook した後、使用しているメソッド内で、たとえばメール アプリのアイコンを取得しようとしている場合は、次のようにします。
// Get the SBApplication for the mail app
Class $SBApplicationController = objc_getClass("SBApplicationController");
SBApplication *mailApp = [[$SBApplicationController sharedInstance] applicationWithDisplayIdentifier:@"com.apple.mobilemail"];
// Get the SBApplicationIcon for the mail app
SBApplicationIcon *mailAppIcon = [[objc_getClass("SBApplicationIcon") alloc] initWithApplication:mailApp];
重要なことは、関心のあるアプリの適切な DisplayIdentifier を取得することです。
この助けを願っています!問題があれば叫んでください。