XNU Image Fuzzer 1.8.2
Documentation for XNU Image Fuzzer
|
Core and external libraries necessary for the fuzzer functionality. More...
#include <ViewController.h>
Instance Methods | |
(void) | - viewDidLoad [implementation] |
Called after the controller's view is loaded into memory. | |
(void) | - loadFuzzedImagesFromDocumentsDirectory [implementation] |
Loads fuzzed images from the documents directory into the collection view. | |
(NSInteger) | - collectionView:numberOfItemsInSection: [implementation] |
Asks the data source for the number of items in the specified section. | |
(UICollectionViewCell *) | - collectionView:cellForItemAtIndexPath: [implementation] |
Asks the data source for the cell that corresponds to the specified item in the collection view. | |
(CGSize) | - collectionView:layout:sizeForItemAtIndexPath: [implementation] |
Asks the delegate for the size of the specified item’s cell. | |
Properties | |
UICollectionView * | collectionView [implementation] |
NSMutableArray< UIImage * > * | fuzzedImages [implementation] |
NSMutableArray< NSString * > * | imagePaths [implementation] |
Core and external libraries necessary for the fuzzer functionality.
This section includes the necessary headers for the Foundation framework, UIKit, Core Graphics, standard input/output, standard library, memory management, mathematical functions, Boolean type, floating-point limits, and string functions. These libraries support image processing, UI interaction, and basic C operations essential for the application.
Definition at line 36 of file ViewController.h.
|
implementation |
Asks the data source for the cell that corresponds to the specified item in the collection view.
collectionView | The collection view requesting this cell. |
indexPath | The index path that specifies the location of the item. |
Definition at line 46 of file ViewController.m.
References fuzzedImages, and loadFuzzedImagesFromDocumentsDirectory.
|
implementation |
Asks the delegate for the size of the specified item’s cell.
collectionView | The collection view object displaying the flow layout. |
collectionViewLayout | The layout object requesting the information. |
indexPath | The index path of the item. |
Definition at line 46 of file ViewController.m.
|
implementation |
Asks the data source for the number of items in the specified section.
Returns the number of fuzzed images.
collectionView | The collection view requesting this information. |
section | The index number of the section. |
Definition at line 46 of file ViewController.m.
|
implementation |
Loads fuzzed images from the documents directory into the collection view.
Definition at line 46 of file ViewController.m.
Referenced by collectionView:cellForItemAtIndexPath:.
|
implementation |
Called after the controller's view is loaded into memory.
Initializes the view controller's properties, collection view, and loads fuzzed images.
Definition at line 46 of file ViewController.m.
|
readwritenonatomicstrongimplementation |
Provided by category ViewController().
|
readwritenonatomicstrongimplementation |
Provided by category ViewController().
Referenced by collectionView:cellForItemAtIndexPath:.
|
readwritenonatomicstrongimplementation |
Provided by category ViewController().