Skip to content

Commit

Permalink
Merge pull request objcio#86 from steipete/peter/issue-19-fixes
Browse files Browse the repository at this point in the history
Fixes radar number
  • Loading branch information
floriankugler committed Dec 9, 2014
2 parents fb58386 + a8f364f commit 3377312
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 2014-12-08-debugging-case-study.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,15 +187,15 @@ Now please don't stop here. You should always properly document such workarounds
// dismissViewControllerAnimated:completion: twice, thus also potentially dismissing the parent controller.
//
// Simply implementing this delegate runs a different code path that properly checks for dismissing.
// rdar://problem/19053416
// rdar://problem/19067761
- (BOOL)popoverPresentationControllerShouldDismissPopover:(UIPopoverPresentationController *)popoverPresentationController {
return YES;
}
```

Writing radars is actually quite a fun challenge, and doesn't take as much time as you might think. With an example, you'll help out some overworked Apple engineer, and without it, the engineers will most likely push back and not even consider the radar. I managed to create a sample in about 50 LOC, including some comments and the workaround. The Single View Template is usually the quickest way to create an example.

Now, we all know that Apple's RadarWeb application isn't great, however, you don't have to use it. [QuickRadar](http://www.quickradar.com/) is a great Mac front-end that can submit the radar for you, and also automatically sends a copy to [OpenRadar](http://openradar.appspot.com). Furthermore, it makes duping radars extremely convenient. You should download it right away and dupe rdar://19053416 if you feel like this bug should be fixed.
Now, we all know that Apple's RadarWeb application isn't great, however, you don't have to use it. [QuickRadar](http://www.quickradar.com/) is a great Mac front-end that can submit the radar for you, and also automatically sends a copy to [OpenRadar](http://openradar.appspot.com). Furthermore, it makes duping radars extremely convenient. You should download it right away and dupe [rdar://19067761](http://openradar.appspot.com/19067761) if you feel like this bug should be fixed.


Not every issue can be solved with such a simple workaround, however, many of these steps will help you find better solutions to issues, or at least improve your understanding of why something is happening.
Expand Down

0 comments on commit 3377312

Please sign in to comment.