Tagged Questions

3
votes
1answer
1k views

How do I get a view in Interface Builder to load a custom view in another nib?

I am making a custom widget that I would like to use in multiple nibs. So I make a new view nib Screen3, add some buttons, and now want my UIAwesomeSauce widget. If I just add a view and then ...
2
votes
2answers
4k views

NSMutableDictionary throws a doesNotRecognizeSelector to objectForKey?

I'm a total noob to iPhone programming, and I've run into an exception being thrown that I just can't wrap my head around. Background: The error is happening in a custom subview, and occurs ...
1
vote
3answers
808 views

UIPickerView look-alike on Android

Hi, I have seen the above control in a few Android applications. I know it is not native to Android, what is the name of the control and how do I implement it in Android? Could it be done using a ...
1
vote
1answer
406 views

What method of UIView gets called when instantiated from a NIB?

I have a simple custom view that is connected via outlet to a NIB. For this particular view, there are actions that I would like to perform on the view when it is initialized, no matter what NIB it is ...
0
votes
1answer
87 views

iphone - Can I draw a UIView instance in drawRect?

I am trying something like below UIView * view = [UIView new]; view.frame = CGRectMake(50, 50, 200, 200); view.bounds = CGRectMake(0, 0, 400, 400); view.backgroundColor = [UIColor grayColor]; ...
0
votes
1answer
186 views

UIScrollview to display a custom UIView made up of core data attributes: Logic for designing that?

Could you tell me if my logic is sound? Because I'm still very new to iOS (going on about a week) and would really appreciate your feedback before heading off in the wrong direction. I have my core ...
0
votes
3answers
2k views

How to create a custom UIView?

I've created a UIView subclass and corresponding xib file where I've laid out some UILabels and UIImageViews. I want to then put multiple copies of this custom UIView into a UIViewController. When I ...