質問

In correspondence with the following post:

How can I Quick Look custom objects with Xcode 5 visual debugger?

I would like to ask if it is possible to have a quick look for native cpp class objects ?

役に立ちましたか?

解決

I asked this question on Apple's developer's forum. The answer is as follows:

Custom Quick Look doesn't work for C++, right now

他のヒント

Assuming that I understand this right and you are talking about how to look at source code (.cpp) files using QuickLook, you may want to have a look at the amazing QLStephen plugin (It's really just called QLStephen, but it's amazing).
You can find some instructions here. You can also grab the source, and do your own custom changes.

This gets even more awesome when you add the ability to select and copy text from Quicklook, using the following command in the terminal:

defaults write com.apple.finder QLEnableTextSelection -boolean YES; 
killall Finder
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top