Steven Sheldon

Results 52 comments of Steven Sheldon

`objc_id` [uses these functions directly](https://github.com/SSheldon/rust-objc-id/blob/0.1.0/src/id.rs#L12) and that has seemed to work fine (although the crate isn't used very widely).

> I find it rather obscure that we have no control over when something is released if it decides to use an auto-release pool. @kvark I believe that ObjC code...

Aha! My bad. So you're just interested in guaranteeing that this code is run inside some autorelease pool, not necessarily that the pool lasts for a certain duration? That's not...

Having objects be uniquely owned by a `SomeClass` in rust would allow you to take the most advantage of rust's type system; I tried something a little like this with...

Here's an example of undefined behavior we can invoke currently: ``` swift let biz = YLPBusiness() if Optional.Some(biz.URL) == nil { print("uh oh") } ``` This prints "uh oh", because...

This was originally mentioned by @simonnarang in #38.

Not as easy as I hoped. Ran into a couple issues: - TDOAuth doesn't currently build on Carthage, it hits a linker error for "embedded dylibs/frameworks only run on iOS...

Hey @2020Deception, thanks for this! We're in the middle of overhauling this library to move from v2 of our public API to [the new version](https://www.yelpblog.com/2016/09/yelp-fusion-developer-program-data-api-access), so unfortunately there'll be some...

Hey @2020Deception, everything has settled down now and the transition to the v3 API is complete :) Feel free to rebase this!

This fix resolved our watchOS build issue on Xcode 14, thank you!