Re: Defer opening documents until app is fully inited

2014-09-22 Thread Mills, Steve
On Sep 20, 2014, at 08:51:32, Jerry Krinock je...@ieee.org wrote: I’m surprised that works. I think I was in a similar situation about 4 years ago.

Re: Writing, then reading JSON

2014-09-22 Thread Charles Jenkins
Well, thank you to anyone who spared any thought for this problem. After I added the test below, with reconstitutedStructureDict and reconstitutedProj, I discovered that everything started working and the files could be written to and read from disk without error. Then I was able to go back and

Re: Writing, then reading JSON

2014-09-22 Thread Bradley O'Hearne
On Sep 22, 2014, at 10:07 AM, Charles Jenkins cejw...@gmail.com wrote: Well, thank you to anyone who spared any thought for this problem. After I added the test below, with reconstitutedStructureDict and reconstitutedProj, I discovered that everything started working and the files could be

Re: Writing, then reading JSON

2014-09-22 Thread Alex Zavatone
This is bad. Do you/we have any idea why this magically started working? Sent from my iPad On Sep 22, 2014, at 1:07 PM, Charles Jenkins cejw...@gmail.com wrote: Well, thank you to anyone who spared any thought for this problem. After I added the test below, with reconstitutedStructureDict

Re: NSButton checkbox type with the disable color is not visible in Yosemite

2014-09-22 Thread Lee Ann Rucker
You can file a bug with Apple, it’ll probably get marked as a duplicate of rdar://17986405 A radio button where we set the cell to NSBackgroundStyleDark is drawing in black when its window is not key, and the correct white when it is. On Sep 21, 2014, at 8:41 PM, Appa Rao Mulpuri

Building .ipa in XC6.01

2014-09-22 Thread Chris Paveglio
We're having a hard time building an IPA file in XC6. From what I have read online, it seems to be a bug. We can make a .pkg file or an XCarchive file from our app. Any confirmation this really is a bug? Seems really unusual for such an important feature. We have already tried to add the

Multiple Today Widgets

2014-09-22 Thread Chris Paveglio
Would there be any issue with creating an app that contains multiple Today Widgets? I've actually done it, and it works on the simulator and on my phone. But now with XC6, I can't build an archive so I am wondering if it is related to the .IPA build problem, or Apple won't allow multiple

Re: Updating iPad to 8.0 final

2014-09-22 Thread Clark S. Cox III
On Sep 18, 2014, at 10:36, Rick Mann rm...@latencyzero.com wrote: I have an iPad, 3rd gen, Wi-Fi + Cellular (ATT). It's model A1430. I downloaded the appropriate .ipsw file (iPad3,2_8.0_12A365_Restore.ipsw), but iTunes refuses to update it, saying The iPad “XXX” could not be updated

Re: Updating iPad to 8.0 final

2014-09-22 Thread Rick Mann
On Sep 22, 2014, at 16:23 , Clark S. Cox III clarkc...@gmail.com wrote: On Sep 18, 2014, at 10:36, Rick Mann rm...@latencyzero.com wrote: I have an iPad, 3rd gen, Wi-Fi + Cellular (ATT). It's model A1430. I downloaded the appropriate .ipsw file (iPad3,2_8.0_12A365_Restore.ipsw), but

Re: Updating iPad to 8.0 final

2014-09-22 Thread Clark S. Cox III
On Sep 22, 2014, at 16:28, Rick Mann rm...@latencyzero.com wrote: On Sep 22, 2014, at 16:23 , Clark S. Cox III clarkc...@gmail.com wrote: On Sep 18, 2014, at 10:36, Rick Mann rm...@latencyzero.com wrote: I have an iPad, 3rd gen, Wi-Fi + Cellular (ATT). It's model A1430. I

-[UIApplication statusBarFrame] changes in iOS 8

2014-09-22 Thread Rick Mann
I tried to find some documentation of a change, but can't It seems that the statusBarFrame returned in iOS 8 is different than in iOS 7. In landscape mode on iPad, I get a size of 20, 1024 in iOS 7, and 1204, 20 in iOS 8. Any suggestions on the best way to handle this? -- Rick Mann

crashing on -[UIViewController presentViewController:animated:completion:] on ios 8

2014-09-22 Thread Herman Chan
Hi all, Getting a bunch of crash on presentViewController in iOS 8, has anyone run into similar issue? here is the stacks trace. Thread : Crashed: com.apple.main-thread 0 libobjc.A.dylib0x34043f46 objc_msgSend + 5 1 UIKit 0x2a0f2739

Re: -[UIApplication statusBarFrame] changes in iOS 8

2014-09-22 Thread Roland King
On 23 Sep 2014, at 9:20 am, Rick Mann rm...@latencyzero.com wrote: I tried to find some documentation of a change, but can't It seems that the statusBarFrame returned in iOS 8 is different than in iOS 7. In landscape mode on iPad, I get a size of 20, 1024 in iOS 7, and 1204, 20 in iOS 8.

Re: crashing on -[UIViewController presentViewController:animated:completion:] on ios 8

2014-09-22 Thread Ben Kennedy
On 22 Sep 2014, at 6:36 pm, Herman Chan herman...@gmail.com wrote: GlobalSettingsViewController *c = [[GlobalSettingsViewController alloc] initWithGroupDataSource:self.dataSource]; navigationController = [[UINavigationController alloc] initWithRootViewController:c]; UIViewController *vc =

Re: crashing on -[UIViewController presentViewController:animated:completion:] on ios 8

2014-09-22 Thread Herman Chan
Hi Ben, I have both in my app, both presenting from rootVC and just plain controller. I fish out the rootVC to get rid of warning like this Presenting view controllers on detached view controllers is discouraged. I am seeing crash logs from both instance of presenting view controllers