mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-24 21:51:35 +00:00
28 lines
462 B
Go
28 lines
462 B
Go
|
// +build ios
|
||
|
|
||
|
package mobile
|
||
|
|
||
|
/*
|
||
|
#cgo CFLAGS: -x objective-c
|
||
|
#cgo LDFLAGS: -framework Foundation
|
||
|
#import <Foundation/Foundation.h>
|
||
|
void Log(const char *text) {
|
||
|
NSString *nss = [NSString stringWithUTF8String:text];
|
||
|
NSLog(@"%@", nss);
|
||
|
}
|
||
|
*/
|
||
|
import "C"
|
||
|
import (
|
||
|
"unsafe"
|
||
|
)
|
||
|
|
||
|
type MobileLogger struct {
|
||
|
}
|
||
|
|
||
|
func (nsl MobileLogger) Write(p []byte) (n int, err error) {
|
||
|
p = append(p, 0)
|
||
|
cstr := (*C.char)(unsafe.Pointer(&p[0]))
|
||
|
C.Log(cstr)
|
||
|
return len(p), nil
|
||
|
}
|