-
Notifications
You must be signed in to change notification settings - Fork 199
Somes issues (tableview, pickerview, navigationcontroller) #109
Comments
I have to add that the pickerView is only filled with ??? instead of the numbers. |
Thank you for report. Could you explain more about last comment? do you mean '?' for blank picker view content? |
Hi. I use the pickerView to select a time. So, with iOS 7, each part of the pickerView contains numbers from 0 to 9. But with iOS 6, each number is replaced by a '?'. Here is the code I am using (I removed some parts of the function that are not useful to describe the problem):
|
Oh, unfortunately, viewForRow: is not implemented in UI7PickerView yet, sorry. |
That's sad. I am using it to be able to change the color of the text of each component of the pickerView. Is there another way to do it? |
No way to do it yet. I should add viewForRow: support for that. |
Ok great. Feel free to ask ;-) |
|
About grouped table view, did you remove color of table view in iOS7 or did you remove spaces between section by section? And how did you do that? |
I have updated my app with the latest version of your code and the pickerView is now empty. |
code: https://github.com/youknowone/UI7Kit/blob/master/UI7KitCatalog/UICPickerViewController.m#L71 NOTE: Text is not visible in iOS7 |
I managed to make the pickerView work. I just needed to set a frame to the UILabel I created in the viewForRow method. Thanks. |
Try 0.9.7. I fixed color problems. |
I have tested 0.9.7. Some issues have been fixed, thank you :-) Here are issues with GroupedTableView: As you can see, there is a missing separator line under the title of the section. And the space between the title of the section and the first row of the section is too big. Another problem is for UITableViewCell.accessoryType. If you select UITableViewCellAccessoryCheckmark, the checkmark is black. It should be blue by default. Concerning the pickerView, I still have the issue mentioned above (the rows not properly selected). I know that this controller is quite difficult to make and I appreciate all the efforts you have already made :-) You don't have any idea on how to set the color of the navigationBar for the whole app? |
I am sorry for late. Time is always running. See commit 1a61f65 You can try it from 0.9.8. If you still are seeing gray background, try to change UIWindow background color to black. (I didn't tested this) |
Hi. Thanks for all the modifications. |
I wrote a test code but I found no problem. Could you try my test and figure out what's the difference? Test is UI7KitCatalog -> picker view |
Hi. I made some tests again and think I figured out what was wrong. For your information, I am not using Storyboard in my app :-) Thanks again for your help |
Hi,
I am using your library on one of my app and I have some issues when I seet it in iOS6.
As you can see, with iOS 7, the background of the navigation controller is black (in fact, all the views of my app have a black background so it looks fine with that navigation controller). But with iOS 6, I cannot have it in another color than what you see in the screenshot.
Here, I am using a simple UITableView grouped. With iOS 6, there is an extra white space for the header of each section, even if I don't specify a custom view or title for that section. If I specify one, that extra white space will be added under the title. How to remove that extra space?
With iOS 6, how to specify the color of the text in the picker? It would be nice as well to change the color of the separator lines.
Thanks for your help!
The text was updated successfully, but these errors were encountered: