Search results for

calendar

1,863 results found

Post

Replies

Boosts

Views

Activity

Reply to Spotlight not rendering results for *anything*
Spotlight search is largely blank for me too, almost exactly as you described. Only calculator functions seem to work, along with intermittent success for app name search. The console shows one or more iOS processes crashing.Everything seemed fine on July 26, then my next tests on July 30 (and all since) have had this result. On an iPad Air restored with beta 4 alone (no backup restore, connected to wifi and my iCloud account), the search window starts out only showing the search field (instead of welcome text I've seen before). Typing ma displays expected results (Mail, Maps, some notes synced from iCloud, Pages documents, contacts, calendar, mail items, reminders, Search Web/Search App Store/Search Maps. (I'm scrolling to see these.) Then typing i blanks everything out, only the search bar is left. Console shows searchd terminated due to unrecognized selector prs_arrayForKey:. (This is without installing any 3rd party apps, nor my development app.)I'll file a bug report, but what I'm hoping for her
Topic: App & System Services SubTopic: General Tags:
Aug ’15
predicate search on array with Core date Entity with NSDates for just a given calendar unit in date.
i have an array of entities with date objects in relationship end. I know how to filter out objects for given dates or date ranges using predicates. my situation is that now i need to filter out objects matching a given value of a calendar unit. like year 2001 or month 4.now for year this seems simple cause i can just make a start date and end date with jan 1 and dec 31 for given year. but for month week this is an impossible task to calulate start and end dates of each week or even months as there are leap years. there has to be a simpler way where i can just mention in the predicate as to which date component i want to be matched. please let me know how to do it.thanks.
Topic: UI Frameworks SubTopic: UIKit Tags:
8
0
1.8k
Aug ’15
Reply to predicate search on array with Core date Entity with NSDates for just a given calendar unit in date.
NSCalendar *calendar = [NSCalendar currentCalendar]; NSPredicate *predicate = [NSPredicate predicateWithBlock:^BOOL(NSDate *date, NSDictionary<NSString *,id> * bindings) { NSDateComponents *components = [calendar components:NSCalendarUnitYear fromDate:date]; if (components.year == 2015) { return YES; } else { return NO; } }]; NSArray *dates = @[[NSDate date]]; NSArray *filteredDates = [dates filteredArrayUsingPredicate:predicate];
Topic: UI Frameworks SubTopic: UIKit Tags:
Aug ’15
22146478 Support default Exchange Calendar sharing permissions
If you use OS X Calendar with Exchange, please dupe this enhancement radar. Thanks!Summary:OS X Calendar does not allow an Exchange user to set their default calendar sharing permission.This functional gap in OS X Calendar is an important omission for a calendar application on Exchange. If a user needs to change their default calendar share in the organization (whether more restrictive or permissive), the user must instead move to Outlook Web Access, Outlook for Windows, or MacOutlook. At my organization of 300, a senior executive asked staff to change their default sharing permissions from “Free/Busy” to “Free/Busy, Title, Subject, and Location”. As a multiplatform organization, a number of staff use Macs, with Mail and Calendar. These folks are unable to accommodate the request with their preferred native tools. So far as I know, OS X Calendar has never offered this functionality on Exchange.
1
0
690
Aug ’15
Custom notification sounds for app
Is it possible to use the iOS sound (and vibration) library to create custom notifications for an app, independent of standard iOS notifications, etc. as is made available to Airdrop, Facebook and Twitter? I would like to use 2-4 sounds in an app, distinct from other apps and standard iOS sounds like Reminder Alerts, Calendar Alerts, Sent Mail, Ringtone, Text Tone, etc. I prefer not to have the app share sounds configured for Reminder Alerts.
0
0
1k
Aug ’15
Reply to predicate search on array with Core date Entity with NSDates for just a given calendar unit in date.
Something like this? @interface Entity : NSObject @property (nonatomic) NSDate *date; @end @implementation Entity @end Entity *entity1 = [Entity new]; entity1.date = [NSDate new]; Entity *entity2 = [Entity new]; entity2.date = [NSDate dateWithTimeIntervalSince1970:902384252]; / NSArray *entities = @[entity1, entity2]; NSArray *filteredEntities = [self entities:entities withYear:1998]; - (NSArray *)entities:(NSArray *)entities withYear:(int)year { NSCalendar *calendar = [NSCalendar currentCalendar]; NSPredicate *predicate = [NSPredicate predicateWithBlock:^BOOL(Entity *entity, NSDictionary<NSString *,id> * bindings) { NSDateComponents *components = [calendar components:NSCalendarUnitYear fromDate:entity.date]; if (components.year == year) { return YES; } else { return NO; } }]; return [entities filteredArrayUsingPredicate:predicate]; }
Topic: UI Frameworks SubTopic: UIKit Tags:
Aug ’15
iOS 9 Beta 5 Location Services Icon bug
Hello! I am on iOS 9 Beta 5 (13A4325c) (iPhone 5S A1530). In Settings -> Privacy -> Location Services (ON) -> System Services, all the toggles are set to OFF or disabled. Just the 'Status Bar Icon' toggle is ON or enabled. I have no pending reminders for the day, nothing in my calendar, all the apps requiring 'Location Use' are closed (nothing is running in the background). Inspite of this I still get the 'Location Services' icon in the status bar. 😐 I have been on iOS 9 Beta 2, iOS 9 Beta 3 and iOS 9 Beta 4 with the same settings to my 'Location Services' area and never encountered this issue. All the settings for every app are the same as compared to previous betas.This behavious is true for Cellular Data. I have not checked this on WiFi.Has any one else encountered the same issue?
18
0
13k
Aug ’15
Reply to iTunes Connect Apple Review process
Drilling down thru 'Support/App Store' link above, you can find - App Review Status. Averages are shown for recent waits.Waits to get to review and review times themselves vary, depending on the queue and type of app, etc.If you set the release date to the future, be sure to track it against actual ready for the store status...don't assume it will be approved first time, and that date might slip into the past by the time it's ready. No big deal if that happens, but don't assume anything about the process, especially if you have some calendar event planned.
Aug ’15
Reply to Calendar events not syncing
I have downloaded the August 6 beta release (13S532c build) and continue to have the same issue. Birthdays come across, but no events. I do get alerts from all my calendars on the watch. (I have three calendars - icloud, Google, and Exchange.) Reset Sync Data does not cure the issue, nor does repairing, resetting from scratch, etc.
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’15
How to Allow Prospective Developer to Review/Test Live App
I have to solve the problem of how to allow review (testing) of our app by prospective developers, when the app is not yet Ad Hoc. I can't get it that far. Here's the problem:I have to find a new developer to help update our app for 2016. It's a 365-day calendar of info that updates every year.The initial app download is a shell (free) in which 29 in-apps, each a different geographical region of information, can be purchased & downloaded. Regions are 16.95 each. In order to help candidates familiarize themselves with the app, they need to be able to download an in-app region and see the app function. I can't expect candidates to pay 16.95 for a region, so I need a way for them to test the app.1: I can't use the promo code feature in iTunes Connect because it's worthless for in-app testing, which makes it worthless for many apps out there since the in-app is often where much of the critical content lies.2: I can't sign candidates on as Sandbox or TestFlight testers because I can't upload the app i
1
0
317
Aug ’15