CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Sep 2016 |
Maintained by GuessEver.
Code Editor UITextView
You can use it to edit code with highlight and auto indent
#import "CodeEditorView.h"
CodeEditorView* codeView = [[CodeEditorView alloc] initWithLanguage:CodeEditorLanguageCpp];
[codeView setFrame:self.view.frame];
[self.view addSubview:codeView];
[codeView loadText:@"#include <cstdio>\nint main() {\n\tprintf(\"hello world\");\n\treturn 0;\n}"];
CodeEditorView to your projectpod install CodeEditorView
We support C, Cpp, Pascal and Java grammar highlight now
typedef enum {
CodeEditorLanguageC = 0,
CodeEditorLanguageCpp,
CodeEditorLanguagePascal,
CodeEditorLanguageJava,
CodeEditorLanguagePlain
} CodeEditorLanguageType;
We just have one theme now just like Xcode. Hope for more in the future.
| Module | Git | License |
|---|---|---|
| TextKit_LineNumbers | https://github.com/alldritt/TextKit_LineNumbers.git | MIT |
| RFKeyboardToolbar | https://github.com/ruddfawcett/RFKeyboardToolbar.git | MIT |
MIT