Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 iOS 上使用 RestKit 并设置路线后:
[[RKObjectManager sharedManager].router routeClass:[MyClass class] toResourcePath:@"/myresource" forMethod:RKRequestMethodPOST];
我想删除“MyClass”类的这条路线并用新的路线替换。
我怎样才能做到这一点?
谢谢。
我认为最简单的方法是不使用 sharedManager,而是为您想要做的两个不同的事情中的每一个创建一个对象管理器。