https://github.com/chris-huxtable/cbhaboutwindow
A fancier about window. Designed for my ease-of-use, but flexible enough for anyone.
https://github.com/chris-huxtable/cbhaboutwindow
about objective-c objective-c-library
Last synced: 25 days ago
JSON representation
A fancier about window. Designed for my ease-of-use, but flexible enough for anyone.
- Host: GitHub
- URL: https://github.com/chris-huxtable/cbhaboutwindow
- Owner: chris-huxtable
- License: isc
- Created: 2019-10-15T17:57:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-17T02:03:18.000Z (over 5 years ago)
- Last Synced: 2025-03-12T11:49:33.388Z (about 2 months ago)
- Topics: about, objective-c, objective-c-library
- Language: Objective-C
- Size: 50.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CBHAboutWindow
[](https://github.com/chris-huxtable/CBHAboutWindow/releases)
[](https://cocoapods.org/pods/CBHAboutWindow)
[](https://github.com/chris-huxtable/CBHAboutWindow/blob/master/LICENSE)
[](https://github.com/chris-huxtable/CBHAboutWindow)A fancier about window. Designed for my ease-of-use, but flexible enough for anyone.
## Screenshot
![]()
## Examples:
Adding a controller so that once the window is closed both the window and controller are released.
```objective-c
CBHAboutWindowController *controller = [CBHAboutWindowController controller];/// Setup...
[controller setTitle:@"Great Western Railway"];
[controller setVersion:@"1.0.0β"];
[controller setAuthor:@"Engineered by Isambard Kingdom Brunel"];
[controller setCopyright:@"Copyright © 1835 Isambard Kingdom Brunel. All rights reserved."];[controller setWebsiteURL:[NSURL URLWithString:@"https://en.wikipedia.org/wiki/Great_Western_Railway"]];
[controller showWindow:self];
```## Licence
CBHAboutWindow is available under the [ISC license](https://github.com/chris-huxtable/CBHAboutWindow/blob/master/LICENSE).