-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple ContactPickers no longer working on iOS7.1 #69
Comments
Any updates on this issue? |
I'm unable to reproduce this issue. I placed 3 MBContactPickers on a storyboard scene and ran it in both 7.0 and 7.1 simulator. I was able to tap on all 3 and they became first responder. Can you further describe your setup or upload a demo project? |
I'm is ios 7.1, it show contacts list but i can't click it, i use it in UITableViewCell and i can see the contact list but i click it is the other UITableViewCell, it seems like isn't top,i'm use xib, code: // ---------- MBContactPicker DataSource & Delegate --------------
// This delegate method is called to allow the parent view to increase the size of
// This delegate method is called to allow the parent view to decrease the size of
// This delegate method is invoked to allow the parent to increase the size of the
|
Same issue, IOS 7.1 simulator (and on real device) with two contact pickers, contactpicker1is on top (higher up the view hierarchy) and works when clicked, but the selection list is behind contactpicker2. contactpicker2 does not respond to clicks at all. Both pickers are just placed on a UIView. Excuse the random colours it is only to show up the layout issues. Thanks. |
I managed to get the drop list to sit on top now, but still struggling to get the second picker to respond.. some code on how I initialise them, which works in iOS 7 but not 7.1 or above. Anybody able to advise on what is wrong ?
|
I've edited the sample to show the problem. Still working on this myself but not having much luck. Anybody able to assist ? |
I'm having this issue on iOS 8. Any updates? I have three contact pickers (to/cc/bcc) and just the first one responds to clicks. I was able to change using becomeFirstResponder() and write something, but the cursor doesn't appear. |
I fixed this issue removing the contact pickers from the storyboard and including programmatically (w/ Masonry) as subview of the root view (viewcontroller.view). If I include the contact picker inside other view, it doesn't work. |
Setup 3 contact pickers in one view, each with an initial height of 30 and with a spacing of 0. When you try and click on them, you can only select the view that is furthest back in the view hierarchy (first one in the order in a Storyboard).
When I run it on an ios 7.0 simulator, this issue is not there. Switch to the 7.1 simulator and it doesn't work.
I'll start looking through the source to figure out what changed, however if anyone else has experienced or fixed this already, please let me know.
The text was updated successfully, but these errors were encountered: