mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-03-11 21:26:04 +00:00
12 lines
350 B
Objective-C
12 lines
350 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppIconTableViewCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *appIconImgView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *appIconLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *subtitleLabel;
|
|
@property (weak, nonatomic) IBOutlet UIView *bgCardView;
|
|
|
|
- (void)playAnimation;
|
|
|
|
@end
|