Jump to content

5 posts in this topic

Recommended Posts

Posted

so im trying to add something to my tweak and if i put it in flex it works fine, but if i try to add it to my tweak it doesnt effect anything, this is what im trying to convert.

 

 

so what i have is

http://imgur.com/VT1rO2S

 

%hook ComposeScreenController

 

- (void)hideFilteredUsers:(id)

{

  return %orig;

}

 

%end

 

but that seems to do nothing?

 

 

Posted

Isn't pass-through like not modifying the method at all?

 

%hook ComposeScreenController
 
- (void)hideFilteredUsers:(id)fp8 {
  %orig(fp8);
} 
%end
Unsure if it works but try that :)

:|

Posted

Isn't pass-through like not modifying the method at all?

 

 

%hook ComposeScreenController
 
- (void)hideFilteredUsers:(id)fp8 {
  %orig(fp8);
} 
%end
Unsure if it works but try that :)

What a waste of 8 byte -_- this will run the default actions

 

Here you go

%hook ComposeScreenController
- (void)hideFilteredUsers:(id) {
}
%end

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines