Reputation: 476
I am new to MacOS app development.
I want to make a custom screensaver for mac.
I found that we can make a custom screensaver file using xcode by starting a project of type ' Screen Saver '.
My doubt is, if I started a normal cocoa application and within that application, is it possible to create a screensaver file.
I saw an app like this called iScreensaver
can anyone help me?
Thanks in advance.
Upvotes: 2
Views: 1197
Reputation: 14247
You could create a normal application, and a screen saver application, and then use a tool like File Merge to see how the projects from each template differ.
Then you could explore the project editor UI in Xcode to see if you could create a new target in a new project to match the screen saver target in the screen saver template.
Upvotes: 2