Blackberry Design with custom button - blackberry

I am very new to blackberry development i want to know how can we design custom buttons and textfields and also set the position according to what we want?
can anyone explain it nicely?

Related

Swift - Custom System Keyboard Within my app only

I have created custom keyboard and custom system keyboard.Both are working But I need to implement UIPageControl in my custom keyboard part. If I choose the custom keyboard.(Using UIView) it is very hard to implement.
I need a solution for following areas.
My first issue is :
Custom keyboard is working with the app only. Once I install, if I exit my app , go other app developed my Custom system keyboard will show. Is there any way to configure within my app only.
I found some ideas from this link. Please suggest any idea.
The second issue is:
I have to implement the pagination
Without pagination, it is working.
It would be helpful if you provide any help.
If you want the keyboard to be app only you should be creating a custom keyboard via UIView only.
With regards to pagination in a UIView, couldn't you simply put a UIScrollView into the UIView and recreate horizontal pagination?

What should i use either UITextView or UIWebView in objective c?

I am working at chatApplication where i need to enable the phone number and link detection while magnifying property set to no like whatsApp and iMessage do. What component should i use for that?
go with the textview. because it'll be also possible with textview to detect number and link. webview also good option.
but as you mention, you want to make chat Application than if you also want to provide the functionality for select,copy,etc. than Textview is the good one.

Spinner in iOS, like in Android

I am very first time developing the Spinner in iOS.
I searched a lot for default Spinner view in iOS, but failed.
What I get is, two ways to design spinner like view in iOS.
UIPickerview
Custom TableView which will be displayed on Click of DownArrow Button
I found the tutorial for UIPickerview.
But There are some OS orientation for this,
Means I want the UIPickerview in different Look & feel with selection style, also Scrolling of picker is not as I want.
So I was thinking to go for second options.
But Is there any other superior way to achieve this task,
As I think the second option is GOOD, but NOT BEST.
What I want is like the image below, its from Android,
I want to go for the same in iOS.
Thanks for help..
I think what you are looking is here
But I use RMPickerViewController which is more powerfull.

Have a custom number pad in iOS to dial number

I am making an app through which the user dials the number.I want to design my own number pad with delete button.I can make them easily by taking 10 buttons on the UIView and placing them accordingly and whenever the button presses i will have the button number updated in my dialer box.
I want to know whether my approach is good or there is something else through which i can achieve this in a better manner.
You can do this by using following 3 ways,
As comment given by #nerowolfe i.e. by using keyboardType equals to UIKeyboardTypePhonePad...
You can get many keyboard type click here
Using UIView with array of buttons inside it as you think.
If you are building this app for ipad then you should use popover instead of UIView or any custom vies. Using popover is more standard way than custom view for ipad. It gives benefits like,
Requires small space
Good look
Standard way
My suggestion to u is that if you are building app for iphone then option 1 or 2 is better and if you are building it for ipad option 3 is great...

select/highlight text ios

In iOS 5 you can hold your finger on text and you can select/highlight text and it will bring up a popup menu. I'd like to implement that same functionality for an application I am developing. It doesn't seem like there is any easy way to do that. Can anyone refer me to a tutorial & example code?
It is pretty much a default behavior. Make sure that you have this in your code:
myTextView.userInteractionEnabled = YES

Resources