
可以进入应用商店下载“语音报时闹钟”并打开该软件,选择整点报时并选择需报时的时间,软件即会在整点时报时。
若有更多疑问,可进入vivo官网/vivo商城APP--我的--在线客服或者vivo官网网页版--下滑底部--在线客服--输入人工客服进入咨询了解。
如下:
工具:iPhone 8
*** 作系统:iOS 14.4.1
1、设置小时提醒功能是在手机中设置提醒事项来设置完成了,首先,我们在电话屏幕上打开提醒图标。
2、然后点触右上角的小+号。
3、新建一个“整点提醒”。
4、列表,点完成。
5、在这个新建的列表中点小“+”号,新建一个提醒事项,输入“1点报时”。
6、再点开小感叹号。
7、划动“在指定日期提醒我”,使其生效,在提醒时间上选1点。
8、在重复项上选择“每天”,设置余额,然后单击“完成”。
9、这样,每小时便会设置一次提醒,在相同的步骤中,我们依次设置了0-24小时提醒,以完成每小时自动提醒。
unit Unit1interfaceusesWindows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrlstype
TForm1 = class(TForm)
Timer1: TTimer
Label1: TLabel
Label2: TLabel
procedure Timer1Timer(Sender: TObject)
private
{ Private declarations }
public
{ Public declarations }
endvar
Form1: TForm1implementation{$R *.dfm}procedure TForm1.Timer1Timer(Sender: TObject)
var s :string
begin
Label1.Caption := FormatDateTime('yyyy/mm/dd AM/PM hh:mm ', Now + 0.125)
Label2.Caption := FormatDateTime('hhmmss',now())
if(FormatDateTime('hhmmss',now())='000000') then
showmessage(FormatDateTime('yyyy/mm/dd AM/PM hh:mm ', Now + 0.125))
endend.
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)