(WIP)
Thank you for being interested in IINA.
First of all, please be tolerete. I'm not a professional in Cocoa development or Swift, so my code, especially early parts may contain stupid logic or or design flaw (a refactor is in my plan).
If you believe the code structure could be improved, please raise an issue.
- IINA is for modern macOS.
- Stay consistent with the design language of macOS.
- Stay consistent with behaviors of macOS original Applications.
- User interface and user experience are important.
- Use animation for UI items, if possible.
- Use proper font weight, size and color.
- Leave margins everywhere.
- IINA is based on mpv.
- Avoid adding features (especially decoding/playback related) that mpv does not provide.
- Lua script is also a possible solution for some features.
- Give user more choices.
Technical tips
- Use xib for UI if possible, such as positioning of UI elements, whether a view uses layer, cocoa binding, etc.
- Add proper comments.
- Use 2 spaces for tabs.
- For code style, currently there's not a fixed guideline. Maybe later?
Current structure
- Only
VideoView
andMPVController
may call mpv API directly. PlayerCore
encapsulates general playback functions. Setting options/properties directly throughMPVController
is discouraged.
Fork, then clone the repo.
git clone [email protected]:(your-username)/iina.git
Make sure cocoapods is installed, if not , install by
sudo gem install cocoapods
Then run
pod install
in project root directory.
Open iina.xcworkspace
.
Commit changes, test, push, and submit a pull request.
If you want to build dylibs on your own, please refer to README.md
.