gpt4 book ai didi

objective-c - 链接到 CoreTelephony Framework (iOS)

转载 作者:行者123 更新时间:2023-11-28 17:43:10 25 4
gpt4 key购买 nike

有谁知道为什么我在尝试编译以下代码时会出现链接器错误:

extern void * _CTServerConnectionCreate(CFAllocatorRef, int (*)(void *, CFStringRef, CFDictionaryRef, void *), int *);

int callback(void *connection, CFStringRef string, CFDictionaryRef dictionary, void *data)
{
return 0;
}

%hook UIKeyboard

-(id)hitTest:(CGPoint)test withEvent:(id)event
{
int x = 0;
_CTServerConnectionCreate(kCFAllocatorDefault, callback, &x);
return %orig;
}

%end

ma​​ke 输出为:

Undefined symbols for architecture armv6: "CTServerConnectionCreate(_CFAllocator const*, int ()(void, __CFString const*, __CFDictionary const*, void*), int*)", referenced from: $_ungrouped$UIKeyboard$hitTest$withEvent$(UIKeyboard*, objc_selector*, CGPoint, objc_object*) in Tweak.xm.o ld: symbol(s) not found for architecture armv6 collect2: ld returned 1 exit status

一些注意事项:

  • 我使用 -framework CoreTelephony 链接到 CoreTelephony
  • 我使用这里的代码 Core Telephony Example
  • 我在 iOS 4.x 和 iOS 5.x 上都试过了
  • 我使用 nm 来确保函数调用在二进制文件中

是的,我使用的是越狱设备。

谢谢;)

最佳答案

只需在 XCode 中包含 CoreTelephony.framework。应该可以!

关于objective-c - 链接到 CoreTelephony Framework (iOS),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7311490/

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