Skip to content

NikolaGrujic91/Cocoa-macOS-Examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 

Repository files navigation

Cocoa macOS Examples [Objective-C]

List of repositories containing Cocoa examples for macOS written in Objective-C.

  1. Cocoa Speech Synthesizer - implementation of application that uses speech synthesizer (NSSpeechSynthesizer) and cell based table view (NSTableView).
  2. Cocoa Slider Binding - implementation of two way binding of NSSlider with instance variable of the delegate object.
  3. Cocoa Table View - implementation of cell based Table View (NSTableView) where data source, delegate, column identifiers and column sort descriptors are set programmatically.
  4. Cocoa Undo Manager - implementation of Undo Manager functionalities by extending Table View example.
  5. Cocoa Preferences Panel - implementation of Preferences Panel.
  6. Cocoa Notifications - implementation of Notifications by extending the Preferences Panel example.
  7. Cocoa Alert Panels - implementation of Alert Panels.
  8. Cocoa Modal Window - implementation of Modal Window.
  9. Cocoa Mouse Events - implementation of Mouse Events handlers in NSView.
  10. Cocoa Pasteboards - implementation of cut, copy and paste operations using pasteboards (NSPasteboard).
  11. Cocoa Drag and Drop for TableView - implementation of Drag and Drop functionalities for NSTableView.
  12. Cocoa Determinate Progress Bar - implementation of NSProgressIndicator which value is updated using NSTimer.
  13. Cocoa Web View - implementation of simple web browser using WKWebView with support for go forward, go back and url validation.
  14. Cocoa Web View Load Local File - implementation of loading local .html file in WKWebView.
  15. Cocoa Web View JavaScript Communication - implementation of WKWebView calling methods from JavaScript, and JavaScript sending messages to WKWebView over WKScriptMessageHandler.
  16. Cocoa Outline View - implementation of cell based NSOutlineView where data source and delegate are set programmatically.
  17. Cocoa Outline View with Checkbox - implementation of view based NSOutlineView with checkbox cells and with data source and delegate set programmatically.
  18. Cocoa View Swapping - implementation of swapping NSView objects with animated transition.
  19. Cocoa Background Thread - implementation of background thread using Grand Central Dispatch (GCD).
  20. Cocoa Combo Box Autocomplete - implementation of NSComboBox autocomplete feature.
  21. Cocoa Custom Views - implementation of multiple NSCustomViews in same window.