SWIFT | How to get start time and end time from user? - swift

i have an app and i have made a custom mode for the user ( similar to do not disturb mode ).
I want the user to be able to set the start time and end time of that mode manually ( either by picker or slider ) along with AM/PM mode or 24 hour format but it is not possible.
I thought i could achieve this with datepicker time mode but i do not want to present two textfield.
the counter version for this on android looks something like the image below. The UI is not important to me but only the functionality is.
Can anyone help me with this or point me in the right direction ?!
Any help is appreciated.
date picker method will need two fields as i mentioned with is a problem. also the problem with date picker is that it should not look like a textfield so i prefer a UIBUTTON so i can set the image for the button.

Related

is there a way to change the display of date picker in flutter?

(sorry I'm not good at English),
I'm trying to change date picker's look when click a button without display the default layout.
I didn't found anything to change the display of it
like this : https://i.stack.imgur.com/kzqHA.png
solution 1
you can use this plugin for flutter_rounded_date_picker
please go through the link
https://pub.dev/packages/flutter_rounded_date_picker
solution 2
please go through this link , it's kind of similar question you are asked
How to customize a date picker

How to modify new Date Picker in SwiftUI?

In the last update of SwiftUI, there we have got a couple of new DatePicker styles. I was trying to modify the default appearance of DatePicker. However could not find a way to do so.
This is the default view right now. I would like to resize the button and also would like to change the background colour (like making it completely transparent).
Could any one please suggest a proper way to do these modification?

how to make calendar that apple made as default in swift?

I just wonder that in the calendar that apple made as default if you click day in month than view' space are split
this space change can be made by just segue??
am I have to make segue and then do the detail about height and width??
I want to get idea about this problem
you can see my project in https://github.com/shinhyogeun/Calendar.git

Need help to enter date from date picker

I have been trying to automate booking a flight on www.kayak.com/flights using Selenium webdriver in java. The issue I am having is that I am unable to enter date into the departing date and arrival date boxes, mainly because when you click in the date box, it displays a popup calendar or date picker. My many attempts to identify the xpath for the date picker itself and the date elements have not been successful as whenever I try to click on the date element in the picker, it changes focus. So, unless I can identify them somehow, I can't enter any data into them. I am sure there has to be someone out there who can help me with this dilemma. Thanks.
If you're using firebug to grab the xpath, you should see a dropdown menu right below the inspect element button. You're probably dealing with an iframe and you will need to switch focus to that frame. It should be easy to check which iframe you want if there are multiple (because the blue dotted frames will display) by passing this xpath: //*
You can do this several ways:
1) driver.switchTo().frame(name_or_id)
2) driver.switchTo().frame(index)
If you're still having troubles, you can always guess and check by starting with 0 and increasing it, so driver.switchTo().frame(0)

iPhone UIDatePicker blue highlight doesn't update on new picker row

I am using an UIDatePicker in my application. When the application loads up, the picker updates to todays date and the row is highlighted in Blue as shown:
However, when I change the values in the picker, the Blue highlight does not move along to the newly selected date, here is a screen shot (notice how the old values still hold the blue highlight) :
I am adding the UIDatePicker via IB and connected with IBOutlet UIDatePicker *picker
Does anyone know a resolution here?
Thanks everyone!
I don't know that you found a bug, as much as you found a "feature." The highlighting appears to be intended to allow your user to get back to today's date. If you really don't like the highlighting, you're probably best off implementing your own custom picker.