1

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.

Mads Hansen
  • 63,927
  • 12
  • 112
  • 147

1 Answers1

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
  • 2
    Considering 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