Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Yershov <syershov@maps.me>2016-12-16 10:10:39 +0300
committerGitHub <noreply@github.com>2016-12-16 10:10:39 +0300
commit04d05b53d200e35c125d0b80fbaa716a063cbea0 (patch)
treef43f1d5efdc4fc6e4fe73d1a1f7748afcefd89a6 /iphone/Maps/Settings/SwitchCell.h
parentec9c0cd876b66d37b31116f3483ed7fc5241f62c (diff)
parent959974e43c1060d0717988bc67672af0247666bd (diff)
Merge pull request #5010 from igrechuhin/swift
[ios] Added Swift support.
Diffstat (limited to 'iphone/Maps/Settings/SwitchCell.h')
-rw-r--r--iphone/Maps/Settings/SwitchCell.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/iphone/Maps/Settings/SwitchCell.h b/iphone/Maps/Settings/SwitchCell.h
deleted file mode 100644
index 8dfb1ad1c4..0000000000
--- a/iphone/Maps/Settings/SwitchCell.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#import "MWMTableViewCell.h"
-
-@class SwitchCell;
-@protocol SwitchCellDelegate <NSObject>
-
-- (void)switchCell:(SwitchCell *)cell didChangeValue:(BOOL)value;
-
-@end
-
-@interface SwitchCell : MWMTableViewCell
-
-@property(weak, nonatomic) IBOutlet UILabel * titleLabel;
-@property(weak, nonatomic) IBOutlet UISwitch * switchButton;
-
-@property(weak, nonatomic) id<SwitchCellDelegate> delegate;
-
-@end