In my iPhone application, i want a color picker to be added on a button click pop up. Can anyone please suggest how to proceed with it. Read several online materials but not finding a good start point.
Thanks in advance
You can use kartech/Colorpicker , here is link
https://github.com/kartech/colorpicker
Related
I have been trying for the last day to do something simple.
I have a Xamarin Forms app. I need to change the selected tab icon on Android.
I've tried custom renderers, but can't get anything to work.
Does anyone have a recipe or code to do this?
Thank you very much in advance.
Karl
James M wrote up a solution here
Thak you James M!
Swift...
So I've got an existing app and I'm working on its appearance. The current task is customising the decimal pad that pops up when the user hits a textField.
I've looked around on how to make it but it always seems that you have to go into the iPhone/ipad settings and add the custom keyboard.
eg. This StackOverFlow Question
and they all seem to point to this same tutorial..
iOS 8: Creating a Custom Keyboard
My problem is that I don't want the user to have to go into settings.
So the question is....IS THIS POSSIBLE?
The following pic is what I want to use. I have made this in an XIB file through adding a target keyboard which makes the new folder with KeyboardViewController.swift , info.plist and NumPad.xib. Though i think I'm on the wrong track, can someone point me the right way please.
Also anyone know the exact dimensions this view should be.. assuming what I'm asking is in fact possible. Let me know if I'm not being clear enough!
NumPad.xib(pic)
Many many thanks,
Steve
SOLUTION: Thanks to Andrea for correcting my search keywords. It led me to this Stack Question which hopefully sends some others to the correct end of the internet that have mistakes custom keyboard with custom input views!
Sure it is possible without going into settings, but they are called custom input views.
You should look into inputViews here what Apple says about them Custom views for data input.
Basically when the user press a text field instead of loading the usual keyboard it loads an inputView that you specify, pay attention that custom keyboard term is misleading. If you google for tutorial you'll find most probably link like the ones that you found.
For a practical example check this tutorial or this, is a little bit old, but the principle are still the same
I'm looking for the menu that pops up when you want to set a photo as wallpaper, where you have a series of options. I'm going to link this to a Action BarButtonItem in a ToolBar and was wondering if you know of any good tutorials for this or have got some code if it's a short and easy thing to do?
I know this is a short question but I really need answer to this, at least to know what the menu is "officially" called ;)
Thanks!
Assuming you are looking for UIActionSheet. These guys have pretty good tutorials. I watched all their tutorials and I think this one will help you out with that.
This is what UIActionSheet Looks like in iOS 7
I want to use a pop-up menu when I click on a plus icon in the navigation bar that looks like the pic I attached. Can you please instruct me how can I accomplish that?
Thanks a bunch!
Thanks for the help guys, I got my answer, and if someone is looking for a direct link to the apple documentation here it is: https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/UIKitUICatalog/UIActionSheet.html#//apple_ref/doc/uid/TP40012857-UIActionSheet
As rdelmar says, that's a UIActionSheet. #rdelmar, you should post that as an answer so the OP can accept it.
You would add a UIBarButtonItem built from a custom view (a button) and attach an action to the button that invokes and displays a UIActionSheet.
EDIT:
This is VERY old thread. UIActionSheet has been deprecated for years, and the right solution now is to use the action sheet appearance of a UIAlertController
I want to make a custom Picker view as follow:
I Search a lot & google also but I can't able to achieve this.
My picker content is UIVIew not image view.
But the search only gives me Image not for UIView.
Please Help me to solve this.
Thank you,
Try downloading this project. I believe its exactly what you are looking for
https://github.com/timburks/iPadSlotMachine