20 lines
469 B
Objective-C
20 lines
469 B
Objective-C
//
|
|
// XPRoomAppManagerAction.m
|
|
// YuMi
|
|
//
|
|
// Created by P on 2025/9/1.
|
|
//
|
|
|
|
#import "XPRoomAppManagerAction.h"
|
|
|
|
@implementation XPRoomAppManagerAction
|
|
+ (instancetype)action {
|
|
XPRoomAppManagerAction *action = [[XPRoomAppManagerAction alloc] init];
|
|
action.title = YMLocalizedString(@"34_text_1");
|
|
action.imageName = @"app_admin_icon";
|
|
action.type = RoomMoreMenuType_App_Manager;
|
|
action.titleColor = [UIColor orangeColor];
|
|
return action;
|
|
}
|
|
@end
|