Change UIDatePicker text color - string

How do I change the color of the text in the UIDatePicker View. Should I use attributed strings?
Thanks

According to Apple's UIKit User Interface Catalog, developers are not allowed to customise date pickers. It has been said already around...
https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/UIKitUICatalog/UIDatePicker.html#//apple_ref/doc/uid/TP40012857-UIDatePicker-SW3
Life's tough!

Well actually you can:
https://stackoverflow.com/a/28246053/3376758
I'm not 100% sure if its allowed or not but it works like a charm.

Related

How to make a custom keyboard?

What are the rules I need to follow, when creating a custom keyboard for a UITextView?
Is it OK to use a subclass of UIView?
Do I need to implement a specific protocol?
Should it contain a variable with a specific type and name?
Anything else?
At this point I have already made my own keyboard with the buttons; and it shows up when the UITextView object becomes the FirstResponder as expected. But I cannot use it and I would like to know if there is a "proper way" or if I just have to find my own way to make things work.
Thanks in advance.
Set inputView property of UITextView with your custom keyboard & refer to this link:
UITextView inputView

Can I get a textfield in Monotouch to appear as a lined notepad - the same appearance as the 'Notes' application

I am experimenting with monotouch for the first time. I have essentially finished my first application, however, I am re-visiting the application to make it more appealing visually and was wondering if I could make a textfield look like the 'Notes' application?
Thanks in advance to those who can help.
I think an easy and simple way is to to do something like the Notes App.
Is to use an UITextView and set an Backgroundimage/BackgroundColor, which looks like a paper.

Is it possible to use a UIBarButtonSystemItem in a UISegmentedControl?

UISegmentedControl allows me to make individual segments have text or images. I'd like to use a system icon (that is appropriate for what I'm trying to do), but I don't see how to grab the UIImage out of the UIBarButtonSystemItem.
Any help is appreciated.
No, you can't. You'll need to provide your own artwork.

Is it possible to scale the content of a QVBoxLayout in pyqt4?

couldn't find anything with google or search.
I have some QPushButtons and QLabels in a QVBoxLayout. Now I want them to scale down. Not only the text, the hole QButton and QLabel. Is that possible? If yes, can you please tell me how or post me a link to the doc. I'm pretty sure, that there must be a way. But I think I'm searching with the wrong words.
Not sure what you mean, but perhaps you're looking for QBoxLayout::addStretch? By the way, I recommend using Qt Designer to create your layout, PyQt4 comes with a tool called pyuic4 that creates the Python code for you. Qt Designer allows you to visually insert spacer items.

Annotation in UIWebview in iphone sdk

I need help for, scribbling on the webpage i.e where ever the user moves on the uiwebview there it should draw a line according to the touch moves.
Is this possible.
Can any one please help me in this.
Thanks,
Mrudula.
yes it is possible just you have to write uiWebView.scrollView instead of uiWebView for getting coordinates of uiwebview.
I started working on something sort of like this. It doesn't currently let you "draw", but it does let you detect and record relative touch coordinates so that you can scale them correctly when zooming in. The DSAnnotationView object lets you provide a custom UIView to be toggled at the annotation point. Check it out here: https://github.com/justindarc/WebViewAnnotations
-Justin

Resources