gpt4 book ai didi

android - 在 iOS 中显示与 Android 中的 Toast 具有相同功能的消息

转载 作者:IT老高 更新时间:2023-10-28 13:02:57 25 4
gpt4 key购买 nike

我需要知道 iOS 中是否有任何方法类似于 Android 中的 Toast 消息。也就是说,我需要显示几秒钟后自动关闭的消息。这类似于 Android 环境中 Toast 类的功能。

最佳答案

您可以使用MBProgressHUD项目。

使用 HUD 模式 MBProgressHUDModeText 进行类似 toast 的行为,

MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.navigationController.view animated:YES];

// Configure for text only and offset down
hud.mode = MBProgressHUDModeText;
hud.label.text = @"Some message...";
hud.margin = 10.f;
hud.yOffset = 150.f;
hud.removeFromSuperViewOnHide = YES;

[hud hideAnimated:YES afterDelay:3];

enter image description here

关于android - 在 iOS 中显示与 Android 中的 Toast 具有相同功能的消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18680891/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com