Ở đây tôi thấy làm thế nào để animate thay đổi tiêu đề UIButton
's sử dụng bây giờ bị phản đối beginAnimations:context:
phương pháp:Animate UIButton của tiêu đề thay đổi
UIBUtton title animation for iPhone
Làm thế nào để làm điều tương tự sử dụng API hiện tại?
Cập nhật:
Tôi đã cố gắng sử dụng hình ảnh động dựa trên khối:
NSTimeInterval animationDuration = animated ? 1.f : 0.f;
[UIView animateWithDuration:animationDuration delay:0.f options:UIViewAnimationOptionBeginFromCurrentState | UIViewAnimationOptionAllowUserInteraction animations:^{
[button setTitle:newTitle forState:UIControlStateNormal];
[button setTitleColor:newTitleColor forState:UIControlStateNormal];
} completion:nil];
Sự thay đổi màu sắc được không sinh động.
Vui lòng kiểm tra tài liệu, tt của tất cả các giải thích tại UIView tham khảo: http://developer.apple.com/library/ios/#documentation/uikit/reference/uiview_class/uiview /uiview.html với giải thích rõ ràng về thay thế 'beginAnimations: context:'. –