NSDatePicker is a subclass of NSControl that provides a user interface for displaying and editing an NSDate object.
1
vote
0answers
22 views
Is there a recommended way of making NSDatePicker use MY step sizes?
I'm wondering if some of you could offer advise on this.
I'm trying to change the NSDatePicker's step size to another value than 1.
On top of that I found that stepping minutes doesn't change the ...
0
votes
1answer
69 views
NSTableView tableView changing all rows when called
At the suggestion of another member, I've rewritten part of my recent project. I've now fixed the trouble I was having earlier, only to spend a few hours struggling with this one. Any/all help is much ...
-1
votes
1answer
64 views
Objective-C -> Can't access NSDatePicker if superclass method is called from subclass
I have a class HelloWorldViewController that has the following
-(void) addDate method
NSDate *myDate = [myDatePIcker dateValue];
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
...
0
votes
1answer
53 views
NSDatePicker Error
Ever time I try to make a string in xcode it won't work can someone point out what's wrong and help please
NSString *date = self.DatePicker.date;
This is the error "Incompatible pointer ...
0
votes
0answers
31 views
NSDatePicker Graphical Representation - Mark Dates mac osx
I was looking at the EventKit framework for mac osx developement. I am working on an app that loads the data from calendar app ( say public holidays for this year) and load it into the msdatepicker's ...
0
votes
0answers
27 views
i want to set NSDatepicker date and time to this formate (25/Feb/2013 15:35) can any one please help me
I want to set NSdatepicker Date and time to this format (25/Feb/2013 15:35)i.e,24 hour time,can any one help me.
0
votes
1answer
65 views
Notification for Datepicker cell
I have to populate the nstableview with values from data base based on the date and time which i select from the date picker. When i select a date and time from the 'To date' date picker, the table ...
0
votes
0answers
55 views
notification from nstextfield to nstableview
I have a textual Date picker. After the date is getting selected, my nstableview has to get loaded with values. How should i use notification to achieve this? I tried with,
...
0
votes
0answers
69 views
How to get the right date format?
In cocoa, I have given a textual NSDatePicker and a disclosure (for displaying graphical date and time pop over) in GUI. When i select a date and time, in text field i'm getting the correct date and ...
0
votes
1answer
154 views
Objective C/Xcode/AppleScript: Getting a date value/string from NSDatePicker in AppleScript
I have an NSDatePicker object (hours, minutes, and seconds only) in my Mac App. I have everything linked up, my only question is what is the AppleScript syntax to retrieve a date/string from a ...
0
votes
1answer
176 views
NSDatePicker graphical representation in popover when changing date
Is it possible for NSDatePicker natively enable functionality to show graphical implementation in popover when changing date? Such functionality now exists in OS X Calendar and Reminders.
Or I need ...
0
votes
1answer
191 views
uidatepicker [__NSDate date]: unrecognized selector sent to instance
I am using uidatepicker and throwing exception when I try to get the date from date picker.
.h file:
#import <UIKit/UIKit.h>
@protocol TimeDelegate <NSObject>
- ...
-2
votes
1answer
43 views
Take date information from ipad
We need to take the actual date from the IPad and save it in a variable. We have searched NSDateComponents and NSDate, but we havent found anything.
For example if today is 25 of october, we would ...
1
vote
1answer
46 views
Cocoa: Working with NSDates in a time-and-timezone-independent way?
I'm working on an application that uses a lot of dates, but that doesn't rely on times at all. I'd like to store them internally as NSDates so that I can use NSDatePicker controls, built-in date ...
0
votes
2answers
141 views
Compare two strings like date
Need to compare two variables of type NSDate.
One is the current date and the other is user selected date.
The user selects the date :
UIDatePicker *datePicker; // declared in h file
...
1
vote
2answers
138 views
NSDatePicker becomeFirstResponder
I have a data entry form where the first field the user wants to enter is an NSDatePicker.
I wish this field to be highlighted when the user clicks a button (labelled 'New')
I have tried putting in ...
0
votes
0answers
217 views
UILocalNotification Repeat Interval for Custom Alarm
I've searched the net with all the help on how to make custom interval UILocalMotification.
I've also read this post:
Im aware that I have to set separate notifications for custom intervals..
from ...
1
vote
1answer
134 views
NSDatepicker buttons in graphical style
Anybody knows if it's possible to modify the date picker three little grey buttons (in its upper left corner) behavior?
I want the date picker displays the current day when clicking in the middle ...
1
vote
0answers
69 views
NSDatePicker allows moving forward in time but not backward
I am using an NSDatePicker in calendar format, which should give me the opportunity to move forward and backward through the months by using the little arrowheads.
In my case, I can only move forward ...
2
votes
1answer
205 views
UIDatePicker for time returns very strange results
I've searched the forum and there are quite a few posts on strange behavior of the UIDatePicker, but none of the solutions solved my problem.
I have a simple UIDatePicker initialized like this:
...
2
votes
1answer
188 views
NSDatePicker action method not firing
Scenario:
The user is entering a date in an NSDatePicker in its textual form with no stepper (on OS X), and when they hit return on the keyboard, I'd like a message to be sent to the controller.
In ...
2
votes
1answer
2k views
Minimum and maximum Date in date Picker in iphone
I want to get minimum and maximum date from date picker but minimum date should be "- 18" of current date and maximum date should be "- 100" of current date.
Suppose current year is 2018 then I want ...
0
votes
1answer
725 views
Xcode showing current date on the Datepicker while creating a map app
I'm new to Xcode and I'm creating a rather simple Mac App with Xcode that has a DatePicker which will save the selection to a Coredata model.
While in Interface Builder, under that DatePicker's ...
0
votes
2answers
258 views
Enable/disable datepicker with checkbox
I am trying to enable and disable a datepicker with a checkbox, but I can not. What's wrong?
if ([checkBox state]==NSOnState) {
[datePicker isEnabled];
}
1
vote
2answers
215 views
AppKit: Duration Picker View
Is there any view similar to NSDatePicker for OS X, but for selecting durations (i.e. hours, minutes and seconds) rather than entire dates. A Google search didn't bring anything useful up, and I ...
0
votes
2answers
1k views
How can convert date into “dd/MM/yyyy” format?
In my app I am using date picker & show date in textfield,
Date picker given me a date in this format "Mar 1, 2012"
I want that date in "dd/MM/yyyy" format.
how can i do that?
1
vote
1answer
448 views
Cocoa Date Picker formatting
This prints the selected datePicker's date to a textField like this:
February 9, 2012 ...
NSDate *theDate = [calendar dateValue];
if (theDate)
{
NSDateFormatter *formatter = [[[NSDateFormatter ...
1
vote
1answer
183 views
How to get localized timer label like UIDatePickerModeCountDownTimer?
I want to get localized timer labels on my developing application.
For example, "hour,hours" and "min" on en_US, "時間" and "分" on ja_JP, "ora,ore" and "min" on it_IT etc.
UIDatePickerCountDownTimer ...
0
votes
1answer
531 views
NSDatePicker, NSTimer with initWithFireDate: fires if I choose a date/time in the past
Not sure I need to paste any code to explain this one, and it's probably something simple that i've overlooked, but i'm seeing my NSTimer with initWithFireDate: fire immediately if I choose a time in ...
0
votes
1answer
847 views
iOS 5 Date Selected in DatePicker
I want to have in my DatePicker selected date, but I have a problem with lag of 2 hours.
// String From Date
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter ...
1
vote
0answers
62 views
nsdateformatter format Aug 8, 2011 11:40
how do i format Aug 8, 2011 11:40 into nsdate using nsdatepicker?Im trying to use
[dateFormatter setDateFormat:@" MMM d, YYYY HH:mm"];
but it doesnt work
3
votes
1answer
964 views
NSDatePicker timezone weirdness
I have an NSDatePicker in my nib file. In code, I set it's timezone to be the GMT calendar's timezone:
[datePicker setTimeZone:[calendar timeZone]];
I only really care about the time (hours, ...
0
votes
1answer
311 views
Can I put a NSDatePicker object in a cell of NSTableView?
Right now I am just using a NSTextCell with a NSDateFormatter, I just wanted to know if this was possible, perhaps by using the .
Thanks in advance!
2
votes
2answers
143 views
NSDateFormatter subtraction
I have a datepicker for the field "From" and "To" and I want the result of the subtraction.
for example: toValue-fromValue and the result would be in hours.
How to do that?
1
vote
1answer
300 views
NSDatePicker change date method runs twice!(mac app)
I just add one NSDatePicker to the form, set the style graphical, and set the action like this:
[datePicker setAction:@selector(datePickSelected:)];
in the method, it just prints out the selected ...
2
votes
1answer
620 views
empty NSDatePicker
Hi
Is it possible to have a NSDatePicker representing a nil object? Something like -/-/- or any other way.
Thanks,
Radu
2
votes
2answers
2k views
Setting up NSDatePicker delegate
I have a NSDatePicker (NSDatePicker* datePicker), and set its delegate as the main application (self). I programmed as follows.
Make self datePicker delegate
[[datePicker cell] setDelegate:self];
...
0
votes
1answer
576 views
How not to reset the selected date in NSDatePicker (objective-c/cocoa)
I have a NSDatePicker in graphical mode, and I set it up this code is called every second to update the current time in NSDatePicker object (datePicker).
- (void) updateTimerNoOne:(NSTimer *) timer {
...
1
vote
2answers
393 views
Action is called twice (mouse up/down) when Target is clicked in Cocoa/objective-c
I have a NSDatePicker (target), and datePickerAction (action)
- (IBAction)datePickerAction:(id)sender
{
if( [[[NSApplication sharedApplication] currentEvent] modifierFlags] &
...
2
votes
3answers
1k views
NSDatePicker - getting the value when it is changed
How would I get notified of a value of a NSDatePicker, when it's changed?

