I am trying to make an jailbreak tweak that requires hooking into some private frameworks such as SpringBoardUI.framework. How would I do so? I've already tried adding 'TweakName' PRIVATEFRAMEWORKS = SpringBoardUI in the makefile with no luck.
Asked
Active
Viewed 1,242 times
1 Answers
2
Aside from adding TweakName_PRIVATEFRAMEWORKS = SpringBoardUI
to your Makefile, you need to set your filter to that framework (com.apple.SpringBoardUIFramework
).

uroboro
- 291
- 2
- 6
-
after that should I #import
– user3288650 Jun 01 '14 at 03:48 -
2Considering that it is a private framework, it is very unlikely to find a complete working set of headers. Usually developers just write a small @interface containing the minimum characteristics of the class being hooked – uroboro Jun 01 '14 at 06:09