- (void)onShowSightAction;
- (void)onLongPressedWCSightFullScreenWindow:(id)arg1;
- (void)onLongPressedWCSight:(id)arg1;
- (void)onClickWCSight:(id)arg1;
......
@end
In the header, methods with keywords “LongTouch” and “LongPressed” are very likely to
be our targets. Now, IDA should have finished the initial analysis, let’s take a look at the
implementation of these methods. onLongTouch first, as shown in figure 9-9.
Figure 9-9 onLongTouch
The execution flow of this method is very simple. Look through the method body quickly,
“UIMenuController” can be easily found, as shown in figure 9-10.
Figure 9-10 onLongTouch
“Favorite” stands out too, as shown in figure 9-11.