| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- //
- // JXMemberPromptViewController.h
- // AICity
- //
- // Feature: 003-ios-api-https
- // Task: T055 - iOS会员购买跳转
- // Created on 2025-10-14.
- //
- #import <UIKit/UIKit.h>
- @class JXMemberStatus;
- NS_ASSUME_NONNULL_BEGIN
- /**
- * 会员提示页面视图控制器
- *
- * 功能:
- * - 显示付费内容提示信息
- * - 展示当前会员状态
- * - 提供会员购买跳转
- * - 支持试看功能(如果有)
- */
- @interface JXMemberPromptViewController : UIViewController
- /**
- * 剧集ID
- */
- @property (nonatomic, strong) NSString *episodeId;
- /**
- * 所需权限级别
- */
- @property (nonatomic, assign) NSInteger requiredLevel;
- /**
- * 当前会员状态
- */
- @property (nonatomic, strong) JXMemberStatus *memberStatus;
- /**
- * 会员购买成功回调
- */
- @property (nonatomic, copy) void(^onMemberPurchaseSuccess)(void);
- /**
- * 取消回调
- */
- @property (nonatomic, copy) void(^onCancel)(void);
- /**
- * 试看回调
- */
- @property (nonatomic, copy) void(^onTrialPlay)(NSTimeInterval trialDuration);
- @end
- NS_ASSUME_NONNULL_END
|