Recent Comments
Open Radar 13897215: Xcode damages nested executables during Mac App Store submission process
More Workarounds
I just appended the following to the original bug.
--
UPDATE:
People have pointed out alternative workarounds in response to this bug, as posted on OpenRadar. One of these even seems to be officially sanctioned by DTS, but as far as I can tell, that doesn't make it less of a workaround for a genuine bug:
- https://gist.github.com/pkamb/5585751
- https://gist.github.com/karstenBriksoft/5308470
I hope this will help with locating the problem!
Open Radar 13886790: Dispatch UIKit actions to the main thread, or assert that I'm not on it.
duped: http://openradar.appspot.com/13902582
Open Radar 13862664: iOS SDK UIPopoverController with ARC pre-emptively deallocs.
If you call the same code in MRC
... this will simply be a leak. It's an unfortunate design decision on Apple's part (even though they have clearly thought about it and also a private property to retain self while being visible, see https://twitter.com/steipete/status/333629160708788225).
use a property like the rest of us :)
Open Radar 13865673: Very slow authentication, high CPU with opendirectoryd
Apple responded having checked with engineering saying that this is expected behavior. They explained LocalDB uses very strong hashing functions and the delay is expected and, in fact, purposeful.
Open Radar 13828201: Core Data throws/catches exceptions internally during normal use.
This is normal behavior. When CoreData hits a merge conflict it raises an exception, then attempts to handle it using whatever merge policy the developer has set.
Open Radar 13361991: `xcodebuild test` doesn't work for iOS simulator builds
Duped as rdar://13857060
Open Radar 262459255: after the re-enabling routine for Apple's Java SE 6 Internet plug-in, the plug-in is reportedly missing
Please fix the radar number!
This radar is staying on top here since months because of the wrong radar number!
Open Radar 13828021: MKMapView very sluggish on iPhone 4 running iOS 6
Noticeable in all MapKit apps
Also Apple apps such as "Find my Friends" or "Find my iPhone" which seem to use MapKit suffer from the same performance problem.
Here's my radar on that topic: http://openradar.appspot.com/12088966
Open Radar 13811553: MacBook Air replaying buffered sounds on wake or when headphones get plugged in
Have that all the time…
… on my 2011 17" MBP. Especially when plugging out the headphone jack. Mostly I notice there are no sounds when chatting in iChat/Messages. Then I plug out the headphone jack and sometimes all those buffered alert sounds are played. Filed a dupe: rdar://13848798
Open Radar 13775441: __builtin_expect() not recognized within an OpenMP section
Email from devbugs@apple.com
[Excerpted from a longer but no more informative email.]
Thanks very much for your feedback.
Engineering has determined that there are no plans to address this issue.
If you have questions regarding the resolution of this issue, please update your bug report with that information.
We are now closing this bug report.
Please be sure to regularly check new Apple releases for any updates that might affect this issue.
Please provide information and comments via the Apple Bug Reporter at http://bugreport.apple.com. Bug reports requiring your attention will appear under ‘My Originated Problems’.
Thank you for your assistance in helping us discover and isolate bugs within our products.
Best Regards,
Apple Developer Support
Open Radar 13827044: Xcode 4.6.2: unicode not supported in project file
Correction of typo
The tool "plutil -lint" is used to check the file, not -line as originally stated
Open Radar 13438788: table view state not restored when embedded in navigation controller
UICollectionView - no workaround
Keith have you got any insight about collection view? I have both a table view and a collection view in my view controller, toggling their appearance with a bar button item, showing the same data.
Trying to call -reloadData on the collection view and table view doesn't affect the collection view. Is there any possibility to followup with the apple engineers about this for a suggested workaround?
Open Radar 13801112: UITextView draws text at different y offsets if textColor is set
Example project available here: http://d.pr/f/XPny
Open Radar 13757733: UIAppearance -appearanceWhenContainedIn: with MFMailComposeViewController bug
Yes Saniul, I remember reading about these remote view controllers a while ago. It's interesting to see that on iOS devices with 3.5" screens running iOS 6.x, the mail compose controller does initially use the settings you defined in -appearanceWhenContainedIn:, but only the first time. Other tries fail.
This is very interesting, proving it can be done, but there is obviously a bug. So, we can probably expect this fixed in iOS 7.
Open Radar 9403816: Please add iphone support for com.apple.product-type.framework.static
+1
I would very much appreciate that functionality!!!
Open Radar 13586175: App gets killed without Crash Log
NSFileHandle
This radar helped me solve a tricky crash scenario in my application that was also silently crashing. My app was iterating over 1000+ files and using an NSFileHandle to check the first couple bytes of each file. When I initialized the handle with a URL, the application started working fine.
// Crashes after 1000 or so calls NSFileHandle *fileHandle = [NSFileHandle fileHandleForReadingAtPath:path];
// Does not crash NSFileHandle *fileHandle = [NSFileHandle fileHandleForReadingFromURL:[NSURL fileURLWithPath:path] error:nil];
However, I also found that I was not calling [fileHandle closeFile] before leaving the method. When I started calling [closeFile] my crash went away.
Open Radar 13094060: Lightning VGA Adapter Doesn't Change External Screen Output Resolution
Reply from Apple:
"issue behaves as intended"
Created a duplicate of the bug under rdar://13784595
Open Radar 13757733: UIAppearance -appearanceWhenContainedIn: with MFMailComposeViewController bug
Remote View Controllers
This happens because Apple started using XPC in iOS 6 and View Controllers such as MFMailComposeViewController are actually run in a seperate process.
You can read more about it here: http://oleb.net/blog/2012/10/remote-view-controllers-in-ios-6/
Open Radar 13926814: Labels with more than one line overlay other entries in IB Document Outline
Attachment