Fix timezone for Android and iOS

This commit is contained in:
世界 2024-01-17 05:48:33 +08:00
parent 0f54e7525f
commit ac7cf6fb72
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
8 changed files with 64 additions and 7 deletions

30
include/tz_ios.go Normal file
View file

@ -0,0 +1,30 @@
package include
/*
#cgo CFLAGS: -x objective-c
#cgo LDFLAGS: -framework Foundation
#import <Foundation/Foundation.h>
const char* getSystemTimeZone() {
NSTimeZone *timeZone = [NSTimeZone systemTimeZone];
NSString *timeZoneName = [timeZone description];
return [timeZoneName UTF8String];
}
*/
import "C"
import (
"strings"
"time"
)
func init() {
tzDescription := C.GoString(C.getSystemTimeZone())
if len(tzDescription) == 0 {
return
}
location, err := time.LoadLocation(strings.Split(tzDescription, " ")[0])
if err != nil {
return
}
time.Local = location
}