Avner

Results 41 issues of Avner

If I have 2 concurrent requesters which are batched together, how does this know which response to send to which requester?

I'm getting `message sent to deallocated instance` after scrolling the tableview (its being reused) ` [UITableView aspect_hookSelector:@selector(dequeueReusableCellWithIdentifier:forIndexPath:) withOptions:AspectPositionAfter usingBlock:^(id info) { UITableViewCell *cell; ``` NSIndexPath *idx = [info arguments][1]; NSInvocation...

Basically I want to add aspects to a datasource/delegate of a UITableView. Obviously UITableView has lots of optional callbacks. In many of my use cases the data source/delegate doesn't implement...

Following up on the previous issue: I added a stub implementation to the view controller in question that was crashing Now I can see that the crash is stemming from...

I'm getting a crash on a `UIViewController viewDidAppear` Its an awkward situation where LLDB says that the instance responds to selector but when actually sending the message it says it...

I came across a situation where I need to replace a method with a private implementation but at a later time perform the original implementation (after my replaced block has...

Hi @krzysztofzablocki I just opened a PR which compiles on mac. I'm having issues though configuring the template + sourcery file. Here is an example project https://github.com/avnerbarr/TestSourcery The workflow isn't...

I want to create a "Notification center" to facilitate decoupled message passing between parts of my application i.e. similar to https://developer.apple.com/documentation/foundation/nsnotificationcenter I couldn't find an existing solution (maybe you know...

question

I'm trying to generate bindings for apple frameworks. Tried multiple combinations. Here is an example: ``` bindgen /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk/System/Library/Frameworks/Accounts.framework/Headers/Accounts.h -o bindings.rs -- -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk/ ``` getting an error: ``` /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk//System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h:492:1: error:...

I want to compare values from 2 seperate csv files , for instance a trivial query like this , but I get an error that the column doesn't exist ```...