PFLogInViewController の私のサブクラスの CustomLogInViewController クラスには、次のようなコードがありました。
@implementation CustomLogInViewController
- (void)viewDidLoad {
[super viewDidLoad];
.......
self.logInView.usernameField.attributedPlaceholder = sOME_VALUE;
self.logInView.passwordField.attributedPlaceholder = sOME_OTHER_VALUE;
.......
}
これにより特に問題は発生しませんでしたが、最近 (POD の更新後)、次のエラー メッセージが表示されます。
Property 'attributedPlaceholder' cannot be found in forward class object 'PFTextField'
他の誰かがこのケースに遭遇し、解決策を持っていますか?