You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
### Overview
4
4
5
5
This application is intended to be used as a macOS (OSX) sample application.
6
-
It is intended to be used to demonstrate a number of Cocoa good practices and techniques including
6
+
It hopefully demonstrates a number of Cocoa good practices and techniques including
7
7
8
8
+ Separation of concerns using MVC
9
9
+ Window Handling
@@ -31,11 +31,11 @@ The application is currently incomplete.
31
31
Things still to do.
32
32
33
33
+ The application UI is very basic and could do with a lot of polish
34
-
+The application menu structure is pretty much as Xcode creates it. Each menu item needs to be reviewed and either hooked up or deleted.
34
+
+Other than the New, Edit and Save meni items the applications menu structure is pretty much as Xcode creates it. Each menu item needs to be reviewed and either hooked up or deleted.
35
35
+ There is very little error handling in the application. There are a number of ```//TODO:``` comments where errors need to be created and raised.
36
36
+ Edit Windows are not positioned correctly
37
-
+ There are still one or two display glitches when you hover the mouse over note.
38
-
+ The app uses JSON files in the ~/Documents folder as its data. These are all currently loaded into memory. The app needs to be updated to use Core Data as its data store.
37
+
+ There are still one or two display glitches when you hover the mouse over a note.
38
+
+ The app uses JSON files in the ~/Documents folder as its data. These are all currently loaded into memory when the application starts. The app needs to be updated to use Core Data as its data store.
39
39
+ Although the code should hopefully be quite readable, it could really do with far more commenting to be good sample/tutorial code.
0 commit comments