8000 fourViewController交换回原来最初的方法-->threeViewController的方法交换 by JingChuanHe · Pull Request #1 · suifengqjn/runtime · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fourViewController交换回原来最初的方法-->threeViewController的方法交换 #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions runtime/runtime/FourViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ - (IBAction)button:(id)sender {

self.person = [Person new];
self.uitextview.text = [_person sayName];
//交换回原来最初的方法-->threeViewController的方法交换
Method m1 = class_getInstanceMethod([Person class], @selector(sayName));
Method m2 = class_getInstanceMethod([Tool class], @selector(changeMethod));

method_exchangeImplementations(m2, m1);
}


Expand Down
0