]> git.saurik.com Git - iphone-api.git/commitdiff
Add support for new WinterBoard Settings features. master
authorJay Freeman (saurik) <saurik@saurik.com>
Wed, 26 Nov 2014 02:24:47 +0000 (18:24 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Wed, 26 Nov 2014 02:24:47 +0000 (18:24 -0800)
UIKit/UIKit.h
UIKit/UIPickerTable.h
UIKit/UITable.h
UIKit/UITableView.h
UIKit/UITableViewCell.h

index e0f9141db8e572115c3b0f57d68223f555f834da..1cd5ef9f83d4dff67fb35270000e911358fa7231 100644 (file)
@@ -207,6 +207,14 @@ typedef enum {
     UISegmentedControlStyleBar,
 } UISegmentedControlStyle;
 
+typedef enum {
+   UITableViewCellAccessoryNone,
+   UITableViewCellAccessoryDisclosureIndicator,
+   UITableViewCellAccessoryDetailDisclosureButton,
+   UITableViewCellAccessoryCheckmark,
+   UITableViewCellAccessoryDetailButton
+} UITableViewCellAccessoryType;
+
 typedef enum {
     UITableViewCellEditingStyleNone,
     UITableViewCellEditingStyleDelete,
@@ -450,6 +458,9 @@ extern UIApplication * const UIApp;
 
 //UIFont *UISystemFontWithSize(CGFloat size);
 
+void UIGraphicsPushContext(CGContextRef);
+void UIGraphicsPopContext();
+
 #ifdef __cplusplus
 }
 #endif
index 03a71e9fdad7584b5e887d99f7b21435e29e8528..58fbf971927045ca4959b7dc8b02875794f67723 100644 (file)
@@ -45,7 +45,7 @@
 - (struct CGPoint)newOffsetWithCenteredRectFromOffset:(struct CGPoint)fp8;
 - (BOOL)scrollCenterCellToSelectionBar;
 - (BOOL)fixupCenterCellToSelectionBar:(BOOL)fp8;
-- (void)setRowHeight:(float)fp8;
+- (void)setRowHeight:(CGFloat)fp8;
 - (void)removeFromSuperview;
 - (void)updateSelectionBarRow;
 
index 1008fca5a258af5503ddd435f0e86d16b9b6891d..3ac71075a353b45a2ff02c3b6cba9e023928ad61 100644 (file)
@@ -84,7 +84,7 @@
 - (void)removeTableColumn:(id)fp8;
 - (int)columnWithIdentifier:(id)fp8;
 - (id)tableColumnWithIdentifier:(id)fp8;
-- (void)setRowHeight:(float)fp8;
+- (void)setRowHeight:(CGFloat)fp8;
 - (float)rowHeight;
 - (void)scrollRowToVisible:(int)fp8;
 - (void)clearAllData;
index 006c8c4fc8ada1403060ff5b77548f429d84b0c2..4cc6f7bc129a6d771a074b303acb54aa06f5aaf0 100644 (file)
 - (id)dataSource;
 - (void)setDelegate:(id)fp8;
 - (id)delegate;
-- (void)setRowHeight:(float)fp8;
+- (void)setRowHeight:(CGFloat)fp8;
 - (float)rowHeight;
 - (void)setSectionHeaderHeight:(float)fp8;
 - (float)sectionHeaderHeight;
index f019525d81a020d75850a956eda5f580d89b25b6..c73ee89f4ae5acfc5fd6995c26ed253d548a58f5 100644 (file)
@@ -76,7 +76,7 @@
 - (id)image;
 - (void)setSelectedImage:(id)fp8;
 - (id)selectedImage;
-- (id)contentView;
+- (UIView *)contentView;
 - (void)setBackgroundView:(id)fp8;
 - (id)backgroundView;
 - (void)setSelectedBackgroundView:(id)fp8;