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

github.com/mumble-voip/mumble-iphoneos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2010-06-20 03:44:39 +0400
committerMikkel Krautz <mikkel@krautz.dk>2010-06-20 03:44:39 +0400
commit01f16cd9bf4e843b79d5678633e76b4ac2d38cc8 (patch)
tree183c3ffdbdedc00a1876cf2384f049db7a5c736a
parente41380a158990fe90167227b4778b8611926cb40 (diff)
Explicitly set selection style for TableViewTextFieldCell to None.
-rw-r--r--Source/Classes/TableViewTextFieldCell.m2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Classes/TableViewTextFieldCell.m b/Source/Classes/TableViewTextFieldCell.m
index 7b76f38..66c4ee4 100644
--- a/Source/Classes/TableViewTextFieldCell.m
+++ b/Source/Classes/TableViewTextFieldCell.m
@@ -37,6 +37,8 @@
if (self == nil)
return nil;
+ [self setSelectionStyle:UITableViewCellSelectionStyleNone];
+
UIView *view = self.contentView;
_label = [[UILabel alloc] init];