| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // MOShowBubbleTool.m
- // MiMoLive
- //
- // Created by MiMo on 2025/6/16.
- //
- #import "MOShowBubbleTool.h"
- @implementation MOShowBubbleTool
- /// 显示过送礼引导
- + (BOOL)hadShowSendGiftGuideView {
- NSString *showKey = (NSString *)[[MODataCache sharedYYCache] objectForKey:kShowSendGiftGuideViewKey];
- return showKey.length > 0;
- }
- /// 显示过关注引导
- + (BOOL)hadShowFollowGuideView {
- NSString *showKey = (NSString *)[[MODataCache sharedYYCache] objectForKey:kShowFollowBubbleGuideViewKey];
- return showKey.length > 0;
- }
- /// 显示过加入粉丝团引导
- + (BOOL)hadShowJointFanClubGuideViewInToDay {
- NSDate *showDate = (NSDate *)[[MODataCache sharedYYCache] objectForKey:kShowJoinFanClubGuideViewKey];
- return [NSDate isSameDay:[NSDate date] otherDate:showDate];
- }
- /// 显示过点赞引导
- //+ (BOOL)hadShowClickLikeGuideView {
- // return YES;
- //}
- @end
|