是的,这在过去曾导致 AppStore 被拒绝,并且可能会再次被拒绝……这意味着仍然可以这样做。
回答我自己的问题,这是如何做到的:
在构建阶段添加框架 CoreTelephony。
宣布:
extern void * _CTServerConnectionCreate(CFAllocatorRef, int (*)(void *, CFStringRef, CFDictionaryRef, void *), int *);
extern int _CTServerConnectionSetVibratorState(int *, void *, int, int, float, float, float);
static void* connection = nil;
static int x = 0;
初始化:
connection = _CTServerConnectionCreate(kCFAllocatorDefault, &vibratecallback, &x);
开始振动:
_CTServerConnectionSetVibratorState(&x, connection, 3, intensity, 0, 0, 0);
停止振动:
_CTServerConnectionSetVibratorState(&x, connection, 0, 0, 0, 0, 0);
此代码来自HapticKeyboard,这是一个可下载的应用程序,在您键入时会发出蜂鸣声。它适用于 Cydia 上的越狱手机。另见我的越狱经历)
还有其他好的参考吗?