import ObjectiveC
{
var count: UInt32 = 0
guard let methodArr = class_copyMethodList(NSClassFromString("UITextSelectionView"), &count) else { return }
let cnt = Int(count)
for i in 0..<cnt{
let method = methodArr[i]
let name = method_getName(method)
if let type = method_getTypeEncoding(method){
print(name, String(utf8String: type) ?? " _ | _ ")
}
}
}
3条答案
按热度按时间siv3szwd1#
你可以使用这个来禁用
pop up
视图,而突出显示仍然存在swizzle()
应该只调用一次。我是怎么知道
UICalloutBar
的?只需使用
break point
,也可以使用bt
。0wi1tuuw2#
仅仅是相关的,
swizzle()
应该只调用一次。什么是
UITextSelectionView
?检查
View Hierarchy
,updateSelectionRects
方法是什么?经由
runtime
,gzszwxb43#
适用于iOS 16: