gpt4 book ai didi

ios - 选择器——我是否总是需要向它们传递一个对象?

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:09:36 25 4
gpt4 key购买 nike

我对选择器的使用比较陌生,所以我在玩它,我不想给选择器传递任何对象,相反它的目的只是告诉类更新自己。我将它们声明为任何其他方法,但只有当它接受一个参数时它才起作用,这是为什么?

//This works    
- (void) updateButtonImageState:(id)object;
// Calling it
[cell performSelector:@selector(updateButtonImageState:) withObject:@"object"];

-

//This crashes  
//Declaring the selector
- (void) updateButtonImageState;
// Calling it
[cell performSelector:@selector(updateButtonImageState:)];

最佳答案

那么你不应该在选择器名称的末尾使用冒号:

[cell performSelector:@selector(updateButtonImageState)];

关于ios - 选择器——我是否总是需要向它们传递一个对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17510765/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com