uitextfield または uitextview をフックするための簡単な調整を開発したいと考えています。私は以下のようなコードを持っています
%hook UITextView
-(id)initWithFrame:(CGRect)frame webView:(id)view
{
UIAlertView *keyAlert = [[UIAlertView alloc] initWithTitle:@"testApp" message:@"Test" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
[keyAlert show];
[keyAlert release];
return %orig;
}
%end
その実行は成功しましたが、出力を取得できません。この微調整を確認して助けてください。間違った方向に進んでいる場合は提案してください。
ありがとう。