gpt4 book ai didi

ios - 是否可以通过对象 ID 工作

转载 作者:行者123 更新时间:2023-11-28 19:05:04 25 4
gpt4 key购买 nike

我有两个相同的函数。它们的唯一区别 - 首先传输 UITextField,然后传输第二个 UILabel。

-(void)shakeAnimationField:(UITextField*) textField;
-(void)shakeAnimationLabel:(UILabel*) textField;

我可以转让id和他一起工作吗?像 -(void)shakeAnimationLabel:(id) textField;我试过了,但只是出错了

Property 'transform' not found on object of type 'const __strong id'

我该如何解决这个问题?

最佳答案

点语法不适用于 id。点语法要求将对象强类型化为类。

所以,而不是:

textField.transform = ...;

做:

[textField setTransform:...];

关于ios - 是否可以通过对象 ID 工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21191719/

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