2014-07-15 84 views

回答

1

不,如果你想這樣做,你可以在目標c中做到這一點,並通過橋接頭將你的Objective-C代碼暴露給Swift。 Objective-C代碼:

inline void assemblyFunc() { 
    __asm__(/*Assembly*/); 
} 

彌合更多信息:https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html

How to call Objective-C code from Swift

我也問過這個問題在這裏:Is it possible to write inline assembly in Swift?

+0

好吧,我看見它已經要求的確,對不起,但我會接受你的答案,因爲它仍然幫助我。 – user3842509