gpt4 book ai didi

ios - 提请注意并促进可操作控制的发现

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:15:22 24 4
gpt4 key购买 nike

为了遵从内容,我选择不使用任何(导航或工具)栏。

该应用有一个着色的 UIButton,它会显示一个操作表(用户可以在其中共享内容和调整偏好)。

据我所知,人们不会与按钮进行交互。他们只看内容。

我想以一种微妙的初始方式让用户注意到该按钮,这样用户会发现可以共享或更改内容。

App content and UIButton

不成功的方法:

  • 将按钮从文本更改为(操作或设置)图标图像。虽然更容易辨认/熟悉,但我失去了描述所选内容的标题。

  • UIAlertController(显示首次启动说明)。简直太讨厌了。

  • 教练标记。透明覆盖层破坏了最初的印象。

有什么帮助,但仍然不引人注目:

  • 改变背景/前景色。该按钮在黑色背景上更显眼。

我没有尝试偶尔为按钮设置动画(直到用户最终点击它)。

是否有其他或更好的方法来帮助用户发现该应用是交互式的?

最佳答案

让它发光。让它发光。让它发光。

view.layer.shadowColor = [UIColor whiteColor].CGColor;
view.layer.shadowRadius = 10.0f;
view.layer.shadowOpacity = 1.0f;
view.layer.shadowOffset = CGSizeZero;

[UIView animateWithDuration:0.5f delay:0 options:UIViewAnimationOptionAutoreverse | UIViewAnimationCurveEaseInOut | UIViewAnimationOptionRepeat | UIViewAnimationOptionAllowUserInteraction animations:^{

[UIView setAnimationRepeatCount:5];

view.transform = CGAffineTransformMakeScale(1.2f, 1.2f);


} completion:^(BOOL finished) {

view.layer.shadowRadius = 0.0f;
view.transform = CGAffineTransformMakeScale(1.0f, 1.0f);
}];

根据需要随意调整颜色、大小和时间。

关于ios - 提请注意并促进可操作控制的发现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30537124/

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