【仅供内部供应商使用,不提供对外解答和培训】

Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

然后在这个地方改成所申请的appid

并在app启动的时候,绑定appid

19.如何去除设置里的去评分等按钮OEM时如何去除设置里的去评分等按钮

第一步,自定义右上设置按钮

Code Block
title自定义设置按钮
UIBarButtonItem *setting = [[UIBarButtonItem alloc] initWithTitle:@"设置" style:UIBarButtonItemStylePlain target:self action:@selector(setting)];  
 
[IFOEMUtils setAppSettingBarButtonItem:setting];

...