From 1cfb58d6e15b2b32212d28dd465f0a0a52797e63 Mon Sep 17 00:00:00 2001 From: Stephan Toggweiler Date: Tue, 28 May 2013 11:49:54 +0200 Subject: [PATCH] transparent bgcolor of the labels --- lib/ProMotion/screens/_tables/table_view_cell_module.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/ProMotion/screens/_tables/table_view_cell_module.rb b/lib/ProMotion/screens/_tables/table_view_cell_module.rb index 3948daf..ab78f0d 100644 --- a/lib/ProMotion/screens/_tables/table_view_cell_module.rb +++ b/lib/ProMotion/screens/_tables/table_view_cell_module.rb @@ -59,6 +59,7 @@ module ProMotion def set_subtitle if data_cell[:subtitle] && self.detailTextLabel self.detailTextLabel.text = data_cell[:subtitle] + self.detailTextLabel.backgroundColor = UIColor.clearColor self.detailTextLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth end self @@ -137,6 +138,7 @@ module ProMotion else cell_title = data_cell[:title] cell_title ||= "" + self.textLabel.backgroundColor = UIColor.clearColor self.textLabel.text = cell_title end