ACEView - 在Cocoa应用中嵌入ACE编程器
在您的Cocoa应用程序中使用带劲的ACE编辑器。
#import "Cocoa/Cocoa.h" #import "ACEView/ACEView.h" @interface AppDelegate : NSObject{ IBOutlet ACEView *aceView; } @property (assign) IBOutlet NSWindow *window; @end #import "AppDelegate.h" #import "ACEView/ACEView.h" #import "ACEView/ACEModeNames.h" #import "ACEView/ACEThemeNames.h" @implementation AppDelegate - (void) applicationDidFinishLaunching:(NSNotification *)aNotification { // Note that you'll likely be using local text [aceView setString:[NSString stringWithContentsOfURL:[NSURL URLWithString:@"https://github.com/faceleg/ACEView"] encoding:NSUTF8StringEncoding error:nil]]; [aceView setDelegate:self]; [aceView setMode:ACEModeHTML]; [aceView setTheme:ACEThemeXcode]; [aceView setShowInvisibles:YES]; } - (void) textDidChange:(NSNotification *)notification { NSLog(@"%s", __PRETTY_FUNCTION__); } @end
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!