forked from jverkoey/nimbus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Doxygen.h
1610 lines (1593 loc) · 77.8 KB
/
Doxygen.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// Copyright 2011-2012 Jeff Verkoeyen
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
/**
* @mainpage
*
* Nimbus is an iOS framework whose feature set grows only as fast as its documentation.
*
* By focusing on documentation first and features second, Nimbus accelerates the development
* process of any application while being easy to use and simple to understand.
*
* <h2>Why Use Nimbus?</h2>
*
* Nimbus' goal is to provide tools that fill missing gaps in Apple's frameworks. This includes
* simplifying common tasks, such as @link RGBCOLOR creating RGB colors@endlink, and providing
* additional features that Apple has not yet or may not implement, such as
* @link NimbusPhotos photo viewers@endlink.
*
* By using Nimbus you will save countless hours of development time. We've found that after a point
* you won't want to build a project without it.
*
* <h2>Navigating the Documentation</h2>
*
* There are two primary forms of documentation for Nimbus: autogenerated documentation and
* community documentation. You are currently reading the autogenerated documentation, which has
* been generated from the Nimbus source code and focuses on individual Nimbus features.
*
* The community documentation is available via the
* <a href="http://wiki.nimbuskit.info/">Nimbus Wiki</a> and contains articles relevant to broader
* topics such as installing Xcode docsets and best practices. The community wiki is editable by
* anyone with a Github account.
*
* <h2>Getting Started</h2>
*
* - <a href="http://wiki.nimbuskit.info/Add-Nimbus-to-your-project">Add Nimbus to your project</a>.
* - Learn about Nimbus' features by checking out the Catalog app in the examples folder.
* - Follow Nimbus' development through its <a href="http://docs.nimbuskit.info/Version-History.html">version history</a>.
* - See the <a href="http://docs.nimbuskit.info/Version-1-0-0.html">latest API diffs</a>.
* - Read the <a href="http://wiki.nimbuskit.info/Three20-Migration-Guide">Three20 Migration Guide</a>.
* - Ask questions and get updates via the <a href="http://groups.google.com/group/nimbusios">Nimbus mailing list</a>.
*
* <h2>Nimbus' Development Roadmap</h2>
*
* Most of the discussion revolving around Nimbus' roadmap is in the Github issue tracker. In
* particular, check out the grab bag of tasks that are actively being worked on here:
*
* https://github.com/jverkoey/nimbus/issues?milestone=5&sort=created&direction=desc&state=open
*/
/**
* @defgroup Version-History Version History
*
* Presented here are the API diffs for each major release of Nimbus.
*/
/**
* @defgroup Version-1-0-0 Version 1.0.0 Release
* @ingroup Version-History
*
* Version 1.0.0 of Nimbus was released on December 10, 2012. This first major release includes
* major improvements to the Nimbus documentation formatting, ARC support, and numerous API changes
* and deprecations.
*
* Due to the incredibly large number of changes that have gone into this release we will not be
* providing the hand-crafted API diffs as per previous versions. You can see a list of all changes
* by running the command
*
* git log 0.9.3-arc...master
*
* from the command line.
*
* <h2>Notable Changes</h2>
*
* <h3>Example Apps</h3>
*
* - New Nimbus Catalog sample app demoing a variety of Nimbus' features.
*
* <h3>Core</h3>
*
* - Snapshot rotation via NISnapshotRotation.
* - Removed a few category methods in favor of C-style methods.
*
* <h3>Attributed Label</h3>
*
* - Substantial improvements to the NIAttributedLabel, including inline image support.
* - Accessibility for NIAttributedLabel links.
* - Improvements to NIAttributedLabel link interactions.
* - New method for calculating the size of NSAttributedStrings:
* NISizeOfAttributedStringConstrainedToSize.
*
* <h3>Badge (New!)</h3>
*
* - A new badge feature for creating NIBadgeView views to display notification-style badges.
*
* <h3>CSS</h3>
*
* - New selectors added to the CSS feature.
*
* <h3>Models</h3>
*
* - NITableViewActions' interface has changed substantially from 0.9.3. All of the original methods
* have been deprecated in favor of an improved syntax. Support for attaching selectors to objects
* has been added. Selectors are often much cleaner than blocks when implementing complex actions.
* - New table view cells.
* - Standardized dynamic cell height calculation via NICellFactory.
* - NIMutableTableViewModel :)
*
* <h3>Paging Scroll View</h3>
*
* - Vertical paging scroll views.
* - Numerous bug fixes and improvements to the paging scroll view.
*/
/**
* @defgroup Version-9-3 Version 0.9.3 API Changes
* @ingroup Version-9-0
*
* Version 0.9.3 of Nimbus was released on June 10, 2012. This minor version introduces
* <a href="http://latest.docs.nimbuskit.info/group___model_tools.html">table view actions and radio groups</a>.
*
* <h2>Misc Changes</h2>
*
* - Code coverage is no longer automatically generated when the Nimbus targets are built.
* - Removed the unmaintained "Getting Started" example project.
*
*
* <h2>Attributed Label</h2>
*
* <h3>NIAttributedLabel</h3>
*
* - <span class="apiDiffBugfix">Bugfix <a href="https://github.com/jverkoey/nimbus/pull/183">183</a></span> Don't incorrectly disable user interaction (thanks to <a href="http://github.com/SevInf">SevInf</a>).
* - <span class="apiDiffAdded">Added</span> <code>[NIAttributedLabel @link NIAttributedLabel::linksHaveUnderlines linksHaveUnderlines@endlink]</code>.
* - <span class="apiDiffBugfix">Bugfix <a href="https://github.com/jverkoey/nimbus/pull/issue">194</a></span> Don't allow attributed labels with multiple lines to have line break modes other than word wrap.
*
*
* <h2>Core</h2>
*
* <h3>NIOperations</h3>
*
* - <span class="apiDiffBugfix">Bugfix <a href="https://github.com/jverkoey/nimbus/pull/172">172</a></span> Correctly handle error codes in NINetworkRequestOperation (thanks to <a href="http://github.com/Vaseltior">Vaseltior</a>).
* - <span class="apiDiffModified">Modified</span> <code>NIOperation.@link NIOperation::didStart didStart@endlink</code>
* @htmlonly<table class="modificationtable"><tr><th></th><th>Method Name</th></tr>
* <tr><th>From</th><td class='Declaration' scope="row"><tt>- (void)operationDidStart</tt></td></tr>
* <tr><th>To</th><td class='Declaration' scope="row"><tt>- (void)didStart</tt></td></tr></table>@endhtmlonly
* - <span class="apiDiffModified">Modified</span> <code>NIOperation.@link NIOperation::didFinish didFinish@endlink</code>
* @htmlonly<table class="modificationtable"><tr><th></th><th>Method Name</th></tr>
* <tr><th>From</th><td class='Declaration' scope="row"><tt>- (void)operationDidFinish</tt></td></tr>
* <tr><th>To</th><td class='Declaration' scope="row"><tt>- (void)didFinish</tt></td></tr></table>@endhtmlonly
* - <span class="apiDiffModified">Modified</span> <code>NIOperation.@link NIOperation::didFailWithError: didFailWithError:@endlink</code>
* @htmlonly<table class="modificationtable"><tr><th></th><th>Method Name</th></tr>
* <tr><th>From</th><td class='Declaration' scope="row"><tt>- (void)operationDidFailWithError:(NSError *)error</tt></td></tr>
* <tr><th>To</th><td class='Declaration' scope="row"><tt>- (void)didFailWithError:(NSError *)error</tt></td></tr></table>@endhtmlonly
* - <span class="apiDiffModified">Modified</span> <code>NIOperation.@link NIOperation::willFinish willFinish@endlink</code>
* @htmlonly<table class="modificationtable"><tr><th></th><th>Method Name</th></tr>
* <tr><th>From</th><td class='Declaration' scope="row"><tt>- (void)operationWillFinish</tt></td></tr>
* <tr><th>To</th><td class='Declaration' scope="row"><tt>- (void)willFinish</tt></td></tr></table>@endhtmlonly
* - <span class="apiDiffModified">Modified</span> <code>NIOperationDelegate.@link NIOperationDelegate::nimbusOperationDidStart: nimbusOperationDidStart:@endlink</code>
* @htmlonly<table class="modificationtable"><tr><th></th><th>Method Name</th></tr>
* <tr><th>From</th><td class='Declaration' scope="row"><tt>- (void)operationDidStart:(NSOperation *)operation</tt></td></tr>
* <tr><th>To</th><td class='Declaration' scope="row"><tt>- (void)nimbusOperationDidStart:(NIOperation *)operation</tt></td></tr></table>@endhtmlonly
* - <span class="apiDiffModified">Modified</span> <code>NIOperationDelegate.@link NIOperationDelegate::nimbusOperationWillFinish: nimbusOperationWillFinish:@endlink</code>
* @htmlonly<table class="modificationtable"><tr><th></th><th>Method Name</th></tr>
* <tr><th>From</th><td class='Declaration' scope="row"><tt>- (void)operationWillFinish:(NSOperation *)operation</tt></td></tr>
* <tr><th>To</th><td class='Declaration' scope="row"><tt>- (void)nimbusOperationWillFinish:(NIOperation *)operation</tt></td></tr></table>@endhtmlonly
* - <span class="apiDiffModified">Modified</span> <code>NIOperationDelegate.@link NIOperationDelegate::nimbusOperationDidFinish: nimbusOperationDidFinish:@endlink</code>
* @htmlonly<table class="modificationtable"><tr><th></th><th>Method Name</th></tr>
* <tr><th>From</th><td class='Declaration' scope="row"><tt>- (void)operationDidFinish:(NSOperation *)operation</tt></td></tr>
* <tr><th>To</th><td class='Declaration' scope="row"><tt>- (void)nimbusOperationDidFinish:(NIOperation *)operation</tt></td></tr></table>@endhtmlonly
* - <span class="apiDiffModified">Modified</span> <code>NIOperationDelegate.@link NIOperationDelegate::nimbusOperationDidFail:withError: nimbusOperationDidStart:@endlink</code>
* @htmlonly<table class="modificationtable"><tr><th></th><th>Method Name</th></tr>
* <tr><th>From</th><td class='Declaration' scope="row"><tt>- (void)operationDidFail:(NSOperation *)operation withError:(NSError *)error</tt></td></tr>
* <tr><th>To</th><td class='Declaration' scope="row"><tt>- (void)nimbusOperationDidFail:(NIOperation *)operation withError:(NSError *)error</tt></td></tr></table>@endhtmlonly
*
* <h2>Css</h2>
*
* <h3>README</h3>
*
* - Fixed the command line statements in the README for setting up Chameleon.
* - Fixed analyzer warnings in CSSTokenizer.m.
* - <span class="apiDiffAdded">Added <a href="https://github.com/jverkoey/nimbus/pull/192">192</a></span> Add UIToolbar and UISearchBar CSS theming (thanks to <a href="http://github.com/subsymbolic">subsymbolic</a>).
* - <span class="apiDiffAdded">Added</span> Add UIActivityIndicatorView CSS theming.
* - <span class="apiDiffAdded">Added</span> Add UIScrollView and UITableView CSS theming.
* - <span class="apiDiffAdded">Added</span> Add support for autoresizing masks via the new -ios-autoresizing css property.
* - <span class="apiDiffBugfix">Bugfix <a href="https://github.com/jverkoey/nimbus/issue/185">185</a></span> Maintain the casing of css property values so that fonts can be loaded correctly.
*
*
* <h2>Launcher</h2>
*
* <h3>NILauncherView</h3>
*
* - <span class="apiDiffBugfix">Bugfix <a href="https://github.com/jverkoey/nimbus/pull/156">156</a></span> NILauncherView can now be used in interface builder (thanks to <a href="http://github.com/onomated">onomated</a>).
*
*
* <h2>Models</h2>
*
* <h3>NIFormCellCatalog</h3>
*
* - <span class="apiDiffBugfix">Bugfix <a href="https://github.com/jverkoey/nimbus/pull/162">162</a></span> NILauncherView can now be used in interface builder (thanks to <a href="http://github.com/kermitology">kermitology</a>).
* - <span class="apiDiffAdded">Added <a href="https://github.com/jverkoey/nimbus/pull/155">155</a></span> Documentation written for heightForObject:atIndexPath:tableView: (thanks to <a href="http://github.com/alist">alist</a>).
* - <span class="apiDiffRemoved">Removed</span> NIButtonFormElement. Use NITableViewActions instead.
* - <span class="apiDiffBugfix">Bugfix</span> Switch table cells now take into account the image when laying out their labels.
*
* <h3>Added NICellCatalog</h3>
*
* - <span class="apiDiffAdded">Added</span> Add @link NITitleCellObject NITitleCellObject@endlink, @link NISubtitleCellObject NISubtitleCellObject@endlink.
* - <span class="apiDiffAdded">Added</span> Add @link NITextCell NITextCell@endlink, @link NISubtitleCellObject NISubtitleCellObject@endlink.
*
* <h3>Added NIRadioGroup</h3>
*
* - <span class="apiDiffAdded">Added</span> Add @link NIRadioGroup NIRadioGroup@endlink.
*
* <h3>Added NITableViewActions</h3>
*
* - <span class="apiDiffAdded">Added</span> Add @link NITableViewActions NITableViewActions@endlink.
*
*
* <h2>Network Image</h2>
*
* <h3>NINetworkImageView</h3>
*
* - <span class="apiDiffModified">Modified</span> <code>NINetworkImageView.@link NINetworkImageView::networkImageViewDidFailWithError: networkImageViewDidFailWithError:@endlink</code>
* @htmlonly<table class="modificationtable"><tr><th></th><th>Method Name</th></tr>
* <tr><th>From</th><td class='Declaration' scope="row"><tt>- (void)networkImageViewDidFailToLoad:(NSError *)error</tt></td></tr>
* <tr><th>To</th><td class='Declaration' scope="row"><tt>- (void)networkImageViewDidFailWithError:(NSError *)error</tt></td></tr></table>@endhtmlonly
* - <span class="apiDiffModified">Modified</span> <code>NINetworkImageViewDelegate.@link NINetworkImageViewDelegate::networkImageView:didFailWithError: networkImageView:didFailWithError:@endlink</code>
* @htmlonly<table class="modificationtable"><tr><th></th><th>Method Name</th></tr>
* <tr><th>From</th><td class='Declaration' scope="row"><tt>- (void)networkImageViewDidFailLoad:(NINetworkImageView *)imageView</tt></td></tr>
* <tr><th>To</th><td class='Declaration' scope="row"><tt>- (void)networkImageView:(NINetworkImageView *)imageView didFailWithError:(NSError *)error</tt></td></tr></table>@endhtmlonly
*
*
* <h2>Overview</h2>
*
* <h3>NIOverviewMemoryCacheController</h3>
*
* - <span class="apiDiffAdded">Added</span> Add @link NIOverviewMemoryCacheController NIOverviewMemoryCacheController@endlink.
* - <span class="apiDiffAdded">Added</span> Added an overview page for displaying image cache memory usage.
*
*
* <h2>WebController</h2>
*
* <h3>NIWebController</h3>
*
* - <span class="apiDiffBugfix">Bugfix</span> NIWebController properly stores display information in the event of a memory warning now.
*
*
* <h2>Real Live People Involved in this Release</h2>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/0e839cb7e618a246e3ce56b8ff08c576?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Mia Alexiou</div>
* <div class="github"><a href="http://github.com/subsymbolic">subsymbolic</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/56d524aa457bb26be5347c9070e92e97?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Samuel Grau</div>
* <div class="github"><a href="http://github.com/Vaseltior">Vaseltior</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/e5c8353e8b304bcd65b990995131c3d0?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Pierre de La Morinerie</div>
* <div class="github"><a href="http://github.com/kemenaran">kemenaran</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/05bb8de11fcbea02c10f291a124cd500?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Daniel Lemmon</div>
* <div class="github"><a href="http://github.com/kermitology">kermitology</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/c104314a899ea33d9f59c8d3f20dc998?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Alexander List</div>
* <div class="github"><a href="http://github.com/alist">alist</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/9fa531dce22a639fd6167369bf7813dc?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Onome</div>
* <div class="github"><a href="http://github.com/onomated">onomated</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/3a66f80e7c43cb8217d44a6cf898148d?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Sergej Tatarincev</div>
* <div class="github"><a href="http://github.com/SevInf">SevInf</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/f3c8603c353afa79b9f1c77f35efd566?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Jeff Verkoeyen</div>
* <div class="github"><a href="http://github.com/jverkoey">jverkoey</a></div>
* </div>
*
* <div class="clearfix"></div>
*
* <h3>Add Your Name to This List</h3>
*
* Contributions are highly encouraged! If you have a feature that you feel would fit within the
* Nimbus framework, feel free to fire off a pull request on GitHub. Bugs may be reported
* using the issue tracker on GitHub as well.
*
* Check out the <a href="https://github.com/jverkoey/nimbus/issues?sort=created&direction=desc&state=open&page=1&milestone=5">tasks grab bag</a>
* for opportunities to help out.
*
* <h2>Robots Involved in this Release</h2>
*
* <div class="contributor_profile">
* <div class="name"><a href="https://github.com/nimbusios/Doxygen">Nimbus Doxygen</a></div>
* </div>
*
* <div class="clearfix"></div>
*/
/**
* @defgroup Version-9-2 Version 0.9.2 API Changes
* @ingroup Version-9-0
*
* Version 0.9.2 of Nimbus was released on February 19, 2012. This minor version fixes various bugs.
*
*
* <h2>Misc Changes</h2>
*
* - Code coverage is now generated for the entire Nimbus framework.
* - <a href="http://wiki.nimbuskit.info/Nimbus-Namespacing">Namespace support</a>.
*
* <h2>AttributedLabel</h2>
*
* <h3>NIAttributedLabel[.m]</h3>
*
* - <span class="apiDiffBugfix">Bugfix</span> Attributed labels now invalidate the core text object when the frame or bounds changes.
* - <span class="apiDiffBugfix">Bugfix</span> Fixed bug in highlight frame calculation (bug fixed by <a href="http://github.com/lipeiqiang">lipeiqiang</a>).
* - <span class="apiDiffBugfix">Bugfix</span> Fixed setStrokeColor:range: to use correct ivar (bug fixed by <a href="http://github.com/rogchap">rogchap</a>).
*
* <h2>Core</h2>
*
* <h3>NIBlocks.h</h3>
*
* - <span class="apiDiffModified">Modified</span> <code>NIBasicBlock</code> (fixed by <a href="http://github.com/gurgeous">gurgeous</a>)
* @htmlonly<table class="modificationtable"><tr><th></th><th>Method Name</th></tr>
* <tr><th>From</th><td class='Declaration' scope="row"><tt>typedef void (^NIBasicBlock)(void)</tt></td></tr>
* <tr><th>To</th><td class='Declaration' scope="row"><tt>typedef void (^NIBasicBlock)(NIOperation *operation)</tt></td></tr></table>@endhtmlonly
*
* - <span class="apiDiffModified">Modified</span> <code>NIErrorBlock</code> (fixed by <a href="http://github.com/gurgeous">gurgeous</a>)
* @htmlonly<table class="modificationtable"><tr><th></th><th>Method Name</th></tr>
* <tr><th>From</th><td class='Declaration' scope="row"><tt>typedef void (^NIErrorBlock)(NSError* error)</tt></td></tr>
* <tr><th>To</th><td class='Declaration' scope="row"><tt>typedef void (^NIErrorBlock)(NIOperation *operation, NSError* error)</tt></td></tr></table>@endhtmlonly
*
* <h3>NICommonMetrics.h</h3>
*
* - <span class="apiDiffAdded">Added</span> UIViewAutoresizingFlexibleMargins.
* - <span class="apiDiffAdded">Added</span> UIViewAutoresizingFlexibleDimensions.
*
* <h3>NIDebuggingTools.h</h3>
*
* - <span class="apiDiffAdded">Added</span> NIDASSERT now breaks on the device as well.
*
* <h3>NIFoundationMethods.h</h3>
*
* - <span class="apiDiffRemoved">Removed</span> NIRectInset (previously deprecated).
*
* <h3>NIInMemoryCache.h</h3>
*
* - <span class="apiDiffModified">Modified</span> <code>NIMemoryCache::@link NIMemoryCache::willSetObject:withName:previousObject: willSetObject:withName:previousObject:@endlink</code>
* @htmlonly<table class="modificationtable"><tr><th></th><th>Method Name</th></tr>
* <tr><th>From</th><td class='Declaration' scope="row"><tt>- (void)willSetObject:(id)object withName:(NSString *)name previousObject:(id)previousObject</tt></td></tr>
* <tr><th>To</th><td class='Declaration' scope="row"><tt>- (BOOL)willSetObject:(id)object withName:(NSString *)name previousObject:(id)previousObject</tt></td></tr></table>@endhtmlonly
*
* <h3>NINonRetainingCollections.m</h3>
*
* - <span class="apiDiffModified">Modified</span> Simplified the various non-retaining collection implementations.
*
* <h3>NIOperations.m</h3>
*
* - <span class="apiDiffAdded">Added</span> @link NINetworkRequestOperation::cachePolicy cachePolicy@endlink.
*
* <h3>NIPaths.m</h3>
*
* - <span class="apiDiffAdded">Added</span> @link NIPathForCachesResource NIPathForCachesResource@endlink (added by <a href="http://github.com/superquadratic">superquadratic</a>).
*
* <h3>UIView.m</h3>
*
* - <span class="apiDiffAdded">Added</span> centerWithin:
*
* <h2>CSS</h2>
*
* <h3>NIStylesheet</h3>
*
* - <span class="apiDiffAdded">Added</span> @link NIStylesheet::rulesetForClassName: rulesetForClassName:@endlink.
*
* <h2>Models</h2>
*
* <h3>NICellFactory</h3>
*
* - <span class="apiDiffAdded">Added</span> @link NICell::heightForObject:atIndexPath:tableView: heightForObject:atIndexPath:tableView::@endlink.
*
* <h2>NetworkImages</h2>
*
* <h3>NINetworkImageView</h3>
*
* - <span class="apiDiffBugfix">Bugfix</span> networkImageViewDidLoadImage: when loading images from memory.
*
* <h2>PagingScrollView</h2>
*
* <h3>NIPagingScrollView[.h]</h3>
*
* - <span class="apiDiffModified">Deprecated</span> <code>setCenterPageIndex:animated:</code> deprecated in favor of <code>moveToPageAtIndex:animated:</code>.
* - <span class="apiDiffBugfix">Bugfix</span> Don't ask for pages if the data source is empty (bug fixed by <a href="http://github.com/gurgeous">gurgeous</a>).
* - <span class="apiDiffBugfix">Bugfix</span> Added initWithCoder to NIPagingScrollView (bug fixed by <a href="http://github.com/gurgeous">gurgeous</a>).
*
* <h2>Photos</h2>
*
* <h3>NetworkPhotoAlbums</h3>
*
* - <span class="apiDiffBugfix">Bugfix</span> Fixed bug in the photo album example app where photo requests would not be properly canceled.
*
*
* <h2>Real Live People Involved in this Release</h2>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/c28f6b282ad61bff6aa9aba06c62ad66?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Roger Chapman</div>
* <div class="github"><a href="http://github.com/rogchap">rogchap</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/2ea33a461b2c20894f62958bcd9a4fb2?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Adam Doppelt</div>
* <div class="github"><a href="http://github.com/gurgeous">gurgeous</a></div>
* </div>
*
* <div class="contributor_profile">
* <div class="name">lipeiqiang</div>
* <div class="github"><a href="http://github.com/lipeiqiang">lipeiqiang</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/4366e6b67ae5107e30b1c039353dd100?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">superquadratic</div>
* <div class="github"><a href="http://github.com/superquadratic">superquadratic</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/f3c8603c353afa79b9f1c77f35efd566?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Jeff Verkoeyen</div>
* <div class="github"><a href="http://github.com/jverkoey">jverkoey</a></div>
* </div>
*
* <div class="clearfix"></div>
*
* <h3>Add Your Name to This List</h3>
*
* Contributions are highly encouraged! If you have a feature that you feel would fit within the
* Nimbus framework, feel free to fire off a pull request on GitHub. Bugs may be reported
* using the issue tracker on GitHub as well.
*
* Check out the <a href="https://github.com/jverkoey/nimbus/issues?sort=created&direction=desc&state=open&page=1&milestone=5">tasks grab bag</a>
* for opportunities to help out.
*
* <h2>Robots Involved in this Release</h2>
*
* <div class="contributor_profile">
* <div class="name"><a href="https://github.com/nimbusios/Doxygen">Nimbus Doxygen</a></div>
* </div>
*
* <div class="clearfix"></div>
*/
/**
* @defgroup Version-9-1 Version 0.9.1 API Changes
* @ingroup Version-9-0
*
* Version 0.9.1 of Nimbus was released on December 5, 2011. This minor version removed ASI and JSONKit from
* Nimbus as strict dependencies. It is now easier to use other networking features for the networked image
* view. This release adds the new pagingscrollview feature which the photos feature now uses as a dependency.
* The processors feature has been renamed to operations and greatly simplified to only provide special-case
* implementations of operations.
*
*
* <h2>Misc Changes</h2>
*
* - Non-PCH audit to ensure that Nimbus compiles when not using a pre-compiled header.
*
*
* <h2>Added Frameworks</h2>
*
* - @link NimbusPagingScrollView Paging Scroll View@endlink
*
*
* <h2>Renamed Frameworks</h2>
*
* - Processors renamed to @link NimbusOperations Operations@endlink
*
*
* <h2>Attributed Label</h2>
*
* <h3>NIAttributedLabel[.h|m]</h3>
*
* - <span class="apiDiffBugfix">Bugfix</span> Cleaned up the label implementation and optimized when the text frame is recalculated.
*
*
* <h2>Core</h2>
*
* <h3>NIFoundationMethods[.h]</h3>
*
* - <span class="apiDiffModified">Deprecated</span> <code>NIRectInset</code> deprecated in favor of <code>UIEdgeInsetsInsetRect</code>.
*
* <h3>NIInMemoryCache[.m]</h3>
*
* - <span class="apiDiffBugfix">Bugfix</span> Memory leak in <code>NIMemoryCache</code> when removeAllObjects was called (bug reported by <a href="http://github.com/lada">lada</a>).
* - <span class="apiDiffBugfix">Bugfix</span> numberOfPixels is now reset in <code>NIImageMemoryCache</code> when removeAllObjects is called (bug reported by <a href="http://github.com/lada">lada</a>).
*
* <h3>Added NIOperations+Subclassing[.h]</h3>
*
* - <span class="apiDiffAdded">Added</span> Anonymous category for subclassing NIOperation objects.
*
* <h3>NIOperations[.h|m]</h3>
*
* - <span class="apiDiffRemoved">Removed</span> <code>NIReadFileFromDiskOperation</code> because NINetworkRequestOperation now implements the same functionality.
*
* <h3>Added NIViewRecycler[.h|m]</h3>
*
*
* <h2>CSS</h2>
*
* <h3>NIChameleonObserver[.m]</h3>
*
* - <span class="apiDiffBugfix">Bugfix</span> Fix assertion bug when using the Chameleon observer the first time.
*
*
* <h2>Models</h2>
*
* <h3>NICellFactory[.h|m]</h3>
*
* - <span class="apiDiffAdded">Added</span> NICellFactory now implements NITableViewModelDelegate so that you can create a NICellFactory object and set up explicit bindings between objects and cells using <code>[NICellFactory @link NICellFactory::mapObjectClass:toCellClass: mapObjectClass:toCellClass:@endlink]</code>.
* - <span class="apiDiffAdded">Added</span> NICellObject may be used to create mappings within the model.
*
* <h3>NIFormCellCatalog[.h|m]</h3>
*
* - <span class="apiDiffAdded">Added</span> NIButtonFormElement may be used to create a button cell in a table view.
*
*
* <h2>Network Image View</h2>
*
* <h3>Added NINetworkImageRequest[.h|m]</h3>
*
* <h3>NINetworkImageView[.h|m]</h3>
*
* - <span class="apiDiffAdded">Added</span> NINetworkImageOperation protocol for creating operations that can be used with the network image view.
* - <span class="apiDiffAdded">Added</span> <code>[NINetworkImageView @link NINetworkImageView::setNetworkImageOperation:forDisplaySize:contentMode:cropRect: setNetworkImageOperation:forDisplaySize:contentMode:cropRect:@endlink]</code>.
* - <span class="apiDiffRemoved">Removed</span> <code>NINetworkImageView.@link NINetworkImageView::imageDiskCache imageDiskCache@endlink</code>.
* - <span class="apiDiffRemoved">Removed</span> <code>NINetworkImageView.@link NINetworkImageView::diskCacheLifetime diskCacheLifetime@endlink</code>.
* - <span class="apiDiffModified">Modified</span> <code>NINetworkImageView.@link NINetworkImageView::loading loading@endlink</code>
* @htmlonly<table class="modificationtable"><tr><th></th><th>Getter Name</th></tr>
* <tr><th>From</th><td class='Declaration' scope="row">@property (nonatomic, readonly, assign) BOOL isLoading</td></tr>
* <tr><th>To</th><td class='Declaration' scope="row"><tt>@property (nonatomic, readonly, assign, getter=isLoading) BOOL loading</tt></td></tr></table>@endhtmlonly
* - Read the article on adding disk caching to your network requests: <a href="http://wiki.nimbuskit.info/Network-Disk-Caching">Network Disk Caching</a>.
*
* <h2>Renamed Processors to Operations</h2>
*
*
* <h2>Overview</h2>
*
* <h3>NIOverviewSwizzling[.m]</h3>
*
* - <span class="apiDiffBugfix">Bugfix</span> Correctly intercept status bar calls for applications that don't use a navigation controller.
*
*
* <h2>Photos</h2>
*
* <h3>NIPhotoAlbumScrollView[.m]</h3>
*
* - <span class="apiDiffAdded">Added</span> <code>NIPhotoAlbumScrollView.@link NIPhotoAlbumScrollView::photoViewBackgroundColor photoViewBackgroundColor@endlink</code> (added by <a href="https://github.com/baz">baz</a>).
*
* <h3>NIPhotoScrubberView[.m]</h3>
*
* - <span class="apiDiffBugfix">Bugfix</span> The initial scrubber thumbnail is now loaded correctly.
*
* <h3>NIToolbarPhotoViewController[.h|m]</h3>
*
* - <span class="apiDiffModified">Modified</span> <code>NIToolbarPhotoViewController.@link NIToolbarPhotoViewController::toolbarIsTranslucent toolbarIsTranslucent@endlink</code>
* @htmlonly<table class="modificationtable"><tr><th></th><th>Method Name</th></tr>
* <tr><th>From</th><td class='Declaration' scope="row">@property (nonatomic, readwrite, assign) BOOL showPhotoAlbumBeneathToolbar</td></tr>
* <tr><th>To</th><td class='Declaration' scope="row"><tt>@property (nonatomic, readwrite, assign, getter=isToolbarTranslucent) BOOL toolbarIsTranslucent</tt></td></tr></table>@endhtmlonly
*
*
* <h2>Examples</h2>
*
* <h3>[NetworkPhotoAlbums] Added an example of showing a caption beneath Facebook photos.</h3>
*
*
* <h2>Real Live People Involved in this Release</h2>
*
* <div class="contributor_profile">
* <div class="name">bubnov</div>
* <div class="github"><a href="http://github.com/bubnov">bubnov</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/c28f6b282ad61bff6aa9aba06c62ad66?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Roger Chapman</div>
* <div class="github"><a href="http://github.com/rogchap">rogchap</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/87c842e2d3f2b9e87e339cbc86463e8d?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Manu Cornet</div>
* <div class="github"><a href="http://github.com/lmanul">lmanul</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/56d524aa457bb26be5347c9070e92e97?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Samuel Grau</div>
* <div class="github"><a href="http://github.com/Vaseltior">Vaseltior</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/2d7becdc5b983d5be55a0a2d28a361c2?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Anthony Lobay</div>
* <div class="github"><a href="http://github.com/TheMadGamer">TheMadGamer</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/afbdf3579731eb934cd946451b53e0bc?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Mike</div>
* <div class="github"><a href="http://github.com/prime31">prime31</a></div>
* </div>
*
* <div class="contributor_profile" style="padding: 5px;margin: 0 5px;margin-bottom: 20px;border: 1px solid #DDD;background-color: white;float: left;">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/ec5d7ba9c004f79817c76146247e787e?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Basil Shkara</div>
* <div class="github"><a href="http://github.com/baz">baz</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/f3c8603c353afa79b9f1c77f35efd566?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Jeff Verkoeyen</div>
* <div class="github"><a href="http://github.com/jverkoey">jverkoey</a></div>
* </div>
*
* <div class="clearfix"></div>
*
* <h3>Add Your Name to This List</h3>
*
* Contributions are highly encouraged! If you have a feature that you feel would fit within the
* Nimbus framework, feel free to fire off a pull request on GitHub. Bugs may be reported
* using the issue tracker on GitHub as well.
*
* Check out the <a href="https://github.com/jverkoey/nimbus/issues?sort=created&direction=desc&state=open&page=1&milestone=5">tasks grab bag</a>
* for opportunities to help out.
*
* <h2>Robots Involved in this Release</h2>
*
* <div class="contributor_profile">
* <div class="name"><a href="https://github.com/nimbusios/Doxygen">Nimbus Doxygen</a></div>
* </div>
*
* <div class="clearfix"></div>
*/
/**
* @defgroup Version-9-0 Version 0.9 API Changes
* @ingroup Version-History
*
* Version 0.9.0 of Nimbus was released on October 24, 2011. This major version introduced
* the new Nimbus @link NimbusCSS CSS@endlink and Chameleon, a new way to rapidly prototype
* styling your iOS applications using CSS.
*
* Watch the Chameleon Youtube video: http://www.youtube.com/watch?v=i_5LbQ8e9BU
*
* Read the Chameleon blog post: http://blog.jeffverkoeyen.com/nimbus-chameleon
*
*
* <h2>Added Frameworks</h2>
*
* - @link NimbusCSS CSS@endlink
*
*
* <h2>Attributed Label</h2>
*
* <h3>NIAttributedLabel[.h|m]</h3>
*
* - <span class="apiDiffAdded">Added</span> <code>[NIAttributedLabel @link NIAttributedLabel::removeAllLinks removeAllLinks@endlink]</code> (thanks to <a href="http://github.com/hboon">hboon</a>.)
*
*
* <h2>Core</h2>
*
* <h3>NIDataStructures[.h|m]</h3>
*
* - <span class="apiDiffAdded">Added</span> <code>[NILinkedList @link NILinkedList::addObjectsFromArray: addObjectsFromArray:@endlink]</code>
*
* <h3>NIPreprocessorMacros.h</h3>
*
* - <span class="apiDiffAdded">Added</span> <code>RGBCOLOR</code> and <code>RGBACOLOR</code>
*
*
* <h2>Models</h2>
*
* <h3>ModelCatalog</h3>
*
* - <span class="apiDiffBugfix">Bugfix</span> Fixed a crashing bug due to setting textField.textColor to nil (thanks to <a href="http://github.com/lmanul">lmanul</a>.)
*
*
* <h2>Examples</h2>
*
* <h3>CSSDemo [added]</h3>
*
*
* <h2>Real Live People Involved in this Release</h2>
*
* <div class="contributor_profile">
* <div class="name">bubnov</div>
* <div class="github"><a href="http://github.com/bubnov">bubnov</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/c28f6b282ad61bff6aa9aba06c62ad66?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Roger Chapman</div>
* <div class="github"><a href="http://github.com/rogchap">rogchap</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/87c842e2d3f2b9e87e339cbc86463e8d?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Manu Cornet</div>
* <div class="github"><a href="http://github.com/lmanul">lmanul</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/f3c8603c353afa79b9f1c77f35efd566?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Jeff Verkoeyen</div>
* <div class="github"><a href="http://github.com/jverkoey">jverkoey</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/b0190e056d8b13400d4ae6eba8a7018d?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Hwee-Boon Yar</div>
* <div class="github"><a href="http://github.com/hboon">hboon</a></div>
* </div>
*
* <div class="clearfix"></div>
*
* <h3>Add Your Name to This List</h3>
*
* Contributions are highly encouraged! If you have a feature that you feel would fit within the
* Nimbus framework, feel free to fire off a pull request on GitHub. Bugs may be reported
* using the issue tracker on GitHub as well.
*
* Check out the <a href="https://github.com/jverkoey/nimbus/issues?sort=created&direction=desc&state=open&page=1&milestone=5">tasks grab bag</a>
* for opportunities to help out.
*
* <h2>Robots Involved in this Release</h2>
*
* <div class="contributor_profile">
* <div class="name"><a href="https://github.com/nimbusios/Doxygen">Nimbus Doxygen</a></div>
* </div>
*
* <div class="clearfix"></div>
*/
/**
* @defgroup Version-8-0 Version 0.8 API Changes
* @ingroup Version-History
*
* Version 0.8.0 of Nimbus was released on September 28, 2011. This major version introduced
* the new Nimbus @link NimbusAttributedLabel Attributed Label@endlink, an iOS SDK-based
* solution for styled text built by Roger Chapman (<a href="http://github.com/rogchap">rogchap</a>).
*
* @image html NIAttributedLabelExample1.png "A mashup of possible label styles"
*
*
* <h2>Added Frameworks</h2>
*
* - @link NimbusAttributedLabel Attributed Label@endlink
*
*
* <h2>Core</h2>
*
* <h3>NIFoundationMethods[.h|m]</h3>
*
* - <span class="apiDiffBugfix">Bugfix</span> Make boundf and boundi perform consistently for invalid bounds (e.g. max < min).
*
* <h3>NINavigationAppearance[.h|m] Added</h3>
*
* - <span class="apiDiffAdded">Added</span> <code>@link NINavigationAppearance NINavigationAppearance@endlink</code> (thanks to <a href="http://github.com/baz">baz</a>.)
*
*
* <h2>Interapp</h2>
*
* <h3>NIInterapp[.h|m]</h3>
*
* - <span class="apiDiffAdded">Added</span> <code>@link NIInterapp::applicationIsInstalledWithScheme: applicationIsInstalledWithScheme:@endlink</code> (thanks to <a href="http://github.com/alias1">alias1</a>.)
* - <span class="apiDiffAdded">Added</span> <code>@link NIInterapp::applicationWithScheme: applicationWithScheme:@endlink</code> (thanks to <a href="http://github.com/alias1">alias1</a>.)
* - <span class="apiDiffAdded">Added</span> <code>@link NIInterapp::applicationWithScheme:andAppStoreId: applicationWithScheme:andAppStoreId:@endlink</code> (thanks to <a href="http://github.com/alias1">alias1</a>.)
* - <span class="apiDiffAdded">Added</span> <code>@link NIInterapp::applicationWithScheme:andPath: applicationWithScheme:andPath:@endlink</code> (thanks to <a href="http://github.com/alias1">alias1</a>.)
* - <span class="apiDiffAdded">Added</span> <code>@link NIInterapp::applicationWithScheme:appStoreId:andPath: applicationWithScheme:appStoreId:andPath:@endlink</code> (thanks to <a href="http://github.com/alias1">alias1</a>.)
*
*
* <h2>Models</h2>
*
* <h3>NITableViewModel[.m]</h3>
*
* - <span class="apiDiffBugfix">Bugfix</span> Fixed a minor bug related to using nil in Nimbus table view models.
*
* <h3>NITableViewModelTests[.m] Added</h3>
*
*
* <h2>Network Image</h2>
*
* <h3>NINetworkImageView[.m]</h3>
*
* - <span class="apiDiffBugfix">Bugfix</span> Fixed a bug with redirected image URLs not being cached properly (thanks to <a href="http://github.com/aviell">aviell</a>.)
*
* <h3>NITableViewModelTests[.m] Added</h3>
*
*
* <h2>Photos</h2>
*
* <h3>NIToolbarPhotoViewController[.m]</h3>
*
* - <span class="apiDiffBugfix">Bugfix</span> Fixed a crashing bug due to sending dealloc at the wrong time (thanks to <a href="http://github.com/baz">baz</a>.)
*
*
* <h2>Web Controller</h2>
*
* <h3>NIWebController[.m]</h3>
*
* - <span class="apiDiffBugfix">Bugfix</span> Fixed misc bugs related to web controller action sheets (thanks to <a href="http://github.com/bmeurer">bmeurer</a>.)
*
*
* <h2>Examples</h2>
*
* <h3>Basic Attributed Label [added]</h3>
*
*
* <h2>Real Live People Involved in this Release</h2>
*
* <div class="contributor_profile" style="padding: 5px;margin: 0 5px;margin-bottom: 20px;border: 1px solid #DDD;background-color: white;float: left;">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/c28f6b282ad61bff6aa9aba06c62ad66?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Roger Chapman</div>
* <div class="github"><a href="http://github.com/rogchap">rogchap</a></div>
* </div>
*
* <div class="contributor_profile" style="padding: 5px;margin: 0 5px;margin-bottom: 20px;border: 1px solid #DDD;background-color: white;float: left;">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/a7acedfd4044ad79252e3b062aef25e7?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Glenn Grant</div>
* <div class="github"><a href="http://github.com/alias1">alias1</a></div>
* </div>
*
* <div class="contributor_profile" style="padding: 5px;margin: 0 5px;margin-bottom: 20px;border: 1px solid #DDD;background-color: white;float: left;">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/ca1536c2ef2e263ed2aec69c1d147677?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Aviel Lazar</div>
* <div class="github"><a href="http://github.com/aviell">aviell</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/22f25c7b3f0f15a6854fae62bbd3482f?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Benedikt Meurer</div>
* <div class="github"><a href="http://github.com/bmeurer">bmeurer</a></div>
* </div>
*
* <div class="contributor_profile" style="padding: 5px;margin: 0 5px;margin-bottom: 20px;border: 1px solid #DDD;background-color: white;float: left;">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/ec5d7ba9c004f79817c76146247e787e?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Basil Shkara</div>
* <div class="github"><a href="http://github.com/baz">baz</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/f3c8603c353afa79b9f1c77f35efd566?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Jeff Verkoeyen</div>
* <div class="github"><a href="http://github.com/jverkoey">jverkoey</a></div>
* </div>
*
* <div class="clearfix"></div>
*
* <h3>Add Your Name to This List</h3>
*
* Contributions are highly encouraged! If you have a feature that you feel would fit within the
* Nimbus framework, feel free to fire off a pull request on GitHub. Bugs may be reported
* using the issue tracker on GitHub as well.
*
* Check out the <a href="https://github.com/jverkoey/nimbus/issues?sort=created&direction=desc&state=open&page=1&milestone=5">tasks grab bag</a>
* for opportunities to help out.
*
* <h2>Robots Involved in this Release</h2>
*
* <div class="contributor_profile">
* <div class="name"><a href="https://github.com/nimbusios/Doxygen">Nimbus Doxygen</a></div>
* </div>
*
* <div class="clearfix"></div>
*/
/**
* @defgroup Version-7-0 Version 0.7 API Changes
* @ingroup Version-History
*
* Version 0.7.0 of Nimbus was released on August 19, 2011. This major version introduced the new
* Nimbus @link NimbusModels Models@endlink, a feature that makes building table views a breeze.
*
*
* <h2>Added Frameworks</h2>
*
* - @link NimbusModels Models@endlink
*
*
* <h2>Core</h2>
*
* <h3>NICommonMetrics[.h]</h3>
*
* - <span class="apiDiffAdded">Added</span> <code>NICellContentPadding()</code>
*
* <h3>NIInMemoryCache[.h]</h3>
*
* - <span class="apiDiffAdded">Added</span> <code>@link NIMemoryCache::nameOfLeastRecentlyUsedObject nameOfLeastRecentlyUsedObject@endlink</code> (thanks to <a href="http://github.com/candersonmiller">candersonmiller</a>.)
* - <span class="apiDiffAdded">Added</span> <code>@link NIMemoryCache::nameOfMostRecentlyUsedObject nameOfMostRecentlyUsedObject@endlink</code> (thanks to <a href="http://github.com/candersonmiller">candersonmiller</a>.)
*
* <h2>WebController</h2>
*
* <h3>NIWebController[.h]</h3>
*
* - <span class="apiDiffAdded">Added</span> <code>@link NIWebController::shouldPresentActionSheet: shouldPresentActionSheet:@endlink</code> (thanks to <a href="http://github.com/bmeurer">bmeurer</a>.)
* - <span class="apiDiffFeature">Feature</span> "Copy this URL" option added to the web controller's action sheet. (thanks to <a href="http://github.com/bmeurer">bmeurer</a>.)
* - <span class="apiDiffFeature">Feature</span> The current web page's URL is shown in the action sheet title. (thanks to <a href="http://github.com/bmeurer">bmeurer</a>.)
*
*
* <h2>Examples</h2>
*
* <h3>Model Catalog [added]</h3>
*
*
* <h2>Real Live People Involved in this Release</h2>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/22f25c7b3f0f15a6854fae62bbd3482f?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Benedikt Meurer</div>
* <div class="github"><a href="http://github.com/bmeurer">bmeurer</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/8d33edcb6695ab66b1e48067e4e3723c?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Anderson Miller</div>
* <div class="github"><a href="http://github.com/candersonmiller">candersonmiller</a></div>
* </div>
*
* <div class="contributor_profile">
* <img width="135px" height="135px" src="http://www.gravatar.com/avatar/f3c8603c353afa79b9f1c77f35efd566?s=135&d=http://three20.info/gfx/team/silhouette.gif" />
* <div class="name">Jeff Verkoeyen</div>
* <div class="github"><a href="http://github.com/jverkoey">jverkoey</a></div>
* </div>
*
* <div class="clearfix"></div>
*
* <h3>Add Your Name to This List</h3>
*
* Contributions are highly encouraged! If you have a feature that you feel would fit within the
* Nimbus framework, feel free to fire off a pull request on GitHub. Bugs may be reported
* using the issue tracker on GitHub as well.
*
* Check out the <a href="https://github.com/jverkoey/nimbus/issues?sort=created&direction=desc&state=open&page=1&milestone=5">tasks grab bag</a>
* for opportunities to help out.
*
* <h2>Robots Involved in this Release</h2>
*
* <div class="contributor_profile">
* <div class="name"><a href="https://github.com/nimbusios/Doxygen">Nimbus Doxygen</a></div>
* </div>
*
* <div class="clearfix"></div>
*/
/**
* @defgroup Version-6-1 Version 0.6.1 API Changes
* @ingroup Version-6-0
*
* Version 0.6.1 of Nimbus was released on August 8, 2011. This minor version introduced the new
* Nimbus @link NimbusWebController WebController@endlink, a ported version of Three20's
* TTWebController.
*
*
* <h2>Added Frameworks</h2>
*
* - @link NimbusWebController Nimbus WebController@endlink
*
* @image html webcontroller-iphone-example1.png "Screenshot of a basic web controller on the iPhone"
*
*