Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
772 views

What are the Dangers of Method Swizzling in Objective C?

I have heard people state that method swizzling is a dangerous practice. Even the name swizzling sugests that it is a bit of a cheat. MethodSwizzling is modifying the mapping so that calling ...
9
votes
3answers
5k views

Method Swizzle on iPhone device

I tried both JRSwizzle, and MethodSwizzle. They compile fine on the simulator but throw a bunch of errors when I try to compile for Device (3.x) Has anyone had any luck swizzling on the iphone? ...
5
votes
2answers
851 views

HLSL Swizzle - in C#

I am looking for a way to implement the swizzle functionality found in HLSL in C#, for those of you unfamiliar with what this is - it is used for easy vector element access. Vector4 v1, v2; // ...
4
votes
1answer
1k views

How to swizzle a class method on iOS?

Method swizzling works great for instance methods. Now, I need to swizzle a class method. Any idea how to do it? Tried this but it doesn't work: void SwizzleClassMethod(Class c, SEL orig, SEL new) { ...
3
votes
4answers
66 views

Iphone: Replace functions using reflection

I have a small function which I want to rewrite, so that function is valid for every class. At the moment I have 10 of the same functions which all work same but every function is for another class. I ...
3
votes
1answer
139 views

How can I call a Method that I saved using class_getInstanceMethod from Objective-C?

How do I call a method that I previously saved using the code below: SEL sel = @selector(someMethod:param:); Method myMethod = class_getInstanceMethod([SomeClass class], sel); As you may ...
3
votes
1answer
224 views

iPhone: I've come up with an interesting way I could get around an API limitation. Will this work?

The problem that I'm trying to solve is this: When using a UIImagePicker, it adjusts itself as the device is rotated. I don't want it to do this, rather it should constantly stay in the portrait ...
2
votes
1answer
58 views

Swizzling low-level TCP methods on IOS

I am trying to find a way to get information on all the TCP traffic to and from my IOS application. The application is very simple and composed of a single UIWebView object. I tried to use swizzling ...
2
votes
1answer
523 views

iOS blurred text: detecting & solving it once and for all?

More than once I've encountered the situation where a UIView (subclass) ends up on a fractional offset, e.g. because its dimensions are odd and it's centered, or because its location is based on the ...
2
votes
3answers
316 views

Saving pointers to file in C++

I'm developing a game for a course at my school. One of the assignments is to enable saving the game to a file and later load the game from the same file. The problem I'm having are pointers. I'm not ...
2
votes
5answers
298 views

How do disk pointers work?

Suppose I want to store a complicated data structure (a tree, say) to disk. The internal pointers which connect nodes in my data structures are pointers, but I can't just write these pointers to ...
1
vote
0answers
60 views

App Store - Method Swizzling Legality

Is there any current information on wether or not method swizzling is legal/illegal on the App Store? The only data point I can find is the Three20 framework shakeup a while back, which started with ...
1
vote
1answer
110 views

Problems trying to apply shader to vertex array in OpenGL using C++

I have 4 dimensional vertices(X,Y,A,B) that I'd like to draw as 6 separate 2D plots (XxY, XxA, XxB, YxA, ...) My vertices are defined as follows: GLint data[MAX_N_POINT][4]; I can draw the first ...
1
vote
1answer
51 views

How should I replace an instance of a class in the system with a subclass in Objective-C?

I have subclassed a system class (UINavigationBar, to be specific) to add some specific functionality. I've been using this everywhere, as a replacement for UINavigationBar. However, now I want to ...
1
vote
1answer
95 views

Method swizzling for NSArray

I'm trying to debug something on an NSArray and I can't even find what the pointer to the array that's causing the issue is and I have no idea why it's happening. I'm getting an error on ...
1
vote
2answers
136 views

Swizzling initWithFrame: doesn't work for objects in a NIB

I'm swizzling initWithFrame: and dealloc on MKMapView and UIScrollView to add and remove notification listeners to monitor connection to an external device so I can hook up additional gesture ...
1
vote
1answer
233 views

Method Swizzling - How to assure methods are swizzled before they are called

I'm method swizzling a third party applications creation of NSMenuItems with SIMBL, but 50/50 of the time the menu-items are created before my method swizzling is initialized. What is a clean way to ...
1
vote
1answer
309 views

SIMBL with Method Swizzling

I have some great troubles overriding some functions in an external App that I use SIMBL to hook in to. In this app, there is a class - let's call it "AppClass". In this class there is a function, ...
1
vote
1answer
662 views

Overriding / Swizzling methods from an existing shared delegate

Is it possible to override ONLY CERTAIN functions from an exisiting delegate, without ourself being a delegate totally? I tried replacing the target IMP with mine, didn't work :'( More detail: ...
0
votes
1answer
80 views

Is - [UIView (MyOwnCategory) drawRect:] never called on 3.1.3?

I define my own my own drawRect method and it is called on 4.2.1 (iOS) 5.0 (iOS) and 4.3.2 (Simulator) sucesfully. But it never called on 3.1.3 (iPhone 2g). What reason could be for this? P.S. Since ...
0
votes
1answer
41 views

does -[CALayer drawInContext:] do something?

According to documentation Default implementation does nothing. But... I throw exception from drawRect method and i see next callstack 3 EasyWakeup 0x0003a7b6 ...
0
votes
1answer
113 views

Method Swizzle Crash: Vietnamese keyboard failing and crashing

EDIT: Prefixed the question with "Method Swizzle Crash" to help others find the bug. For each key pressed in the Vietnamese keyboard on the simulator or any device running iOS 4 or higher, the ...
0
votes
2answers
89 views

Replacing Methods by Memory Address

I was wondering if there was any way to swizzle a method by a memory address. For example: I have a pointer to a method 0xFFFFFF. I have an method in my application. I want to replace the pointer with ...
0
votes
1answer
151 views

What exactly constitutes swizzling in OpenGL ES 2.0? (PowerVR SGX specifically.)

PowerVR says Swizzling the components of lowp vectors is expensive and should be avoided. What exactly is swizzling? color.brg // This fits the definition I'm familiar with. But what ...
0
votes
0answers
201 views

UINavigationBar background image using method swizzling

I need to use a custom image as navigation bar background which is inside the navigation controller. If we use category for UINavigationBar, we can add the image as background. But it will affect ...
0
votes
1answer
333 views

Customized navigation bar hides buttons

Hope you can help with this one too... I wanted to customize my navigation bar by adding custom background picture. I found out perfect but a bit complicated method called:NavigationSwizzle. In ...
0
votes
2answers
495 views

How do I implement method swizzling?

I am trying to modify behaviour of a program (i dont have it's source) using SIMBL. I used class dump and found out that I need to overide an instance method This method is in the class called ...
0
votes
2answers
194 views

Swizzling NSLog Function on iPhone

I know that it's possible to do method swizzling for Selectors and Methods in Objective C. Is it possible to swizzle functions like NSLog to our custom function. I wanted to add some extra ...
0
votes
2answers
416 views

Replacing the content of UIImage(s) loaded from XIB at runtime

For a concept I'm developing, I need to load XIB files manually and by using class and instance method swizzling I have been able to intercept calls to imageCustomNamed, imageCustomWithContentsOfFile ...