Paul Williamson

Results 26 issues of Paul Williamson

I've seen a few of these crashes: `Fatal Exception: NSRangeException Cannot remove an observer for the key path "endOfInput" from because it is not registered as an observer.` The crash...

I've added OrigamiEngine with FLAC support to a project using CocoaPods. When I build I get 22 `Dsymutil Warning` messages: ``` GenerateDSYMFile /Users/pi/Library/Developer/Xcode/DerivedData/MusicLife-bjixafcgmqomeidbaowsaggosygn/Build/Products/Debug-iphoneos/MusicLife.app.dSYM /Users/pi/Library/Developer/Xcode/DerivedData/MusicLife-bjixafcgmqomeidbaowsaggosygn/Build/Products/Debug-iphoneos/MusicLife.app/MusicLife cd /Users/pi/git/ARCAMControl export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/pi/Library/Developer/Xcode/DerivedData/MusicLife-bjixafcgmqomeidbaowsaggosygn/Build/Products/Debug-iphoneos/MusicLife.app/MusicLife...

**Note:** this is a discussion rather than an issue. Upnpx is currently pretty feature complete and rich, but is starting to show its age a little. One of the biggest...

enhancement

As mentioned in #35, I have a block of code executing batched background fetching of all the upnp media items in a list. If I tap into an album while...

I've just discovered a serious flaw with rendering box insets. I tested this by setting `background-image-insets` and then printing the image insets in the debugger. ``` background-image-insets: 1; (UIEdgeInsets) $0...

t2:bug

The documentation can be improved by using [appledoc](http://gentlebytes.com/appledoc/) style documentation. The advantage of this is that you get beautiful documentation generated by [CocoaDocs](http://cocoadocs.org/). Check out the article on [NSHipster](http://nshipster.com/documentation/) and...

t1:enhancement

The readme states that navigation bar accepts `background-color`, yet [`NUINavigationBarRenderer.m`](https://github.com/tombenner/nui/blob/master/NUI/Core/Renderers/NUINavigationBarRenderer.m) never sets this property.

In NUIButtonRenderer, padding is set to setTitleEdgeInsets: ``` objc if ([NUISettings hasProperty:@"padding" withClass:className]) { [button setTitleEdgeInsets:[NUISettings getEdgeInsets:@"padding" withClass:className]]; } ``` https://github.com/squarefrog/nui/blob/master/NUI/Core/Renderers/NUIButtonRenderer.m#L29-L31 ``` objc The same property is used for title-insets...

If I use the Simulator's Settings app to set my language to English (UK), then the `.GlobalPreferences.plist` contains the following: ```xml AppleLanguages en-GB ``` The `NSLocale.isoLanguageCodes` array, doesn't include this...

The current behaviour makes it easy to forget that there are pending tests. For example if I have the following test: ``` SpecBegin(PendingTests) describe(@"PendingTests", ^{ xit(@"should show pending status"); });...