gpt4 book ai didi

Objective-C 重构方法

转载 作者:行者123 更新时间:2023-12-01 17:34:23 25 4
gpt4 key购买 nike

我有以下代码:

-(void)textFieldDidBeginEditing:(UITextField *)textField
{
CGRect textFieldRect = [self.view.window convertRect:textField.bounds fromView:textField];
CGRect viewRect = [self.view.window convertRect:self.view.bounds fromView:self.view];
...

}

如您所见,它通过 UITextField 传递。我也在同一个 ViewController 中复制了这段代码,但传入了一个 UITextView。

我希望能够将其重构为一个传入 UITextField 或 UITextView 的方法?我怎样才能做到这一点?

这段代码也出现在其他 View Controller 中,所以理想情况下我想把它放在一个帮助类中,这对 iOS 来说很新,所以不知道从哪里开始。

为简洁起见,我从该方法中删除了大部分代码,但它所做的是在 iOS 键盘出现时将 UI 控件滑入 View 。

最佳答案

您可以期待 UIView,因为您似乎没有使用这些 View 中的任何特殊文本属性。

-(void)textFieldDidBeginEditing:(UIView *)textField
{
CGRect textFieldRect = [self.view.window convertRect:textField.bounds fromView:textField];
CGRect viewRect = [self.view.window convertRect:self.view.bounds fromView:self.view];
// ...
}

关于Objective-C 重构方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9422564/

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