-1
它是一個Xcode項目。我已經通過構建階段鏈接CoreGraphics - >鏈接二進制與庫。沒有匹配函數調用'CGEventSourceCreate'
它的編譯錯誤在我的一個cpp文件中。 我可以'跳轉到定義'並找到'CGEventSourceCreate'在CoreGraphics-> CGEventSource.h
但是如果我包含「CGEventSource.h」將會出現錯誤,說CGEventSource.h無法找到。
我該怎麼辦?
的#include我幷包括它 –
這裏的錯誤代碼: –
mouseEventLeftDragged = CGEventCreateMouseEvent(CGEventSourceCreate(NULL), eventTypeLeftDragged, mouseCursorPosition, kCGMouseButtonLeft) ; CGEventSetType(mouseEventLeftDragged,kCGEventLeftMouseDragged); //修復Apple Bug CGEventPost(kCGSessionEventTap,mouseEventLeftDragged); draggingLeftButton = true; –