开发者

What is the usage of NSResponder's indent:?

NSResponde开发者_StackOverflowr has a method you override called - indent:, but unsure when it would normally be activated.


It's typically used in programming text editors to fix up the indentation of a piece of code, e.g. converting:

for (...) {
something
}

into:

for (...) {
    something
}

If you're not familiar with Cocoa Text's key binding system, see the documentation — it's pretty powerful and flexible.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜