Search results for

calendar

1,863 results found

Post

Replies

Boosts

Views

Activity

Reply to Add calendar to iOS app
Not sure why question has been down votedProbably because you've posted it to a topic area that's about the Objective-C language itself but the question isn't about Objective-C but rather about the various system frameworks that you access from Objective-C.Once I understand your question better, I should be able to recommend a better place to post it.To that end, reading through your question I'm not sure what you're really asking. You seem to have two things to do:getting data from your online database in some sort of model-level objects (A)writing code to display those model-level objects as a classic calendar view (B)Which of these is most important to you?Share and Enjoy — Quinn The Eskimo! Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskimo + 1 + @apple.com
Topic: Programming Languages SubTopic: General Tags:
Jul ’15
Integrating External Payments in iOS App
Could anyone please help guiding me to the following:I am developing an app that will provide some sort of event sharing information between business and users. This is not integrated with iOS calendar or reminders. The data is entirely stored on the cloud and the app access the data through a REST service.I would like the users to pay a monthly fee for using the app. So this is not really a digital subscription. I am not selling any content in the app. It is merely to cover the expenses to run web services and databases and infrastructure on the cloud.Question : Do I must use in App Store purchase API for monthly payments by my users? Can I integrate external payment system like PayPal in the app for this purpose?
4
0
2.7k
Jul ’15
Why Develop a 2.0 App With Same Functionality as the 1.0 App?
I am asking a question, but really, I would like your opinion. Why should one develop a 2.0 Apple Watch App when their 1.0 Apple Watch App has close to the same functionality? Other than the fact that the 2.0 app would have its own distinct name and one could then charge separately for it.I was really hoping personally for a calendar UI to be incorporated with the 2.0 version, but it wasn't to be.
5
0
465
Jul ’15
UICollectionView: infinite scroll to the beginning of the collection view
I'm making collection view with a dynamic content loading ability. I want to make a calendar using UICollectionView. In my implementation, I create a data source array with dates. It shows only 4 weeks (current date in one of them). I also have 2 weeks before and 2 weeks after they are hidden (collection view visible size shows only 4 rows). In wanted to dynamically load previous/ next weeks if needed. But I have huge problems with collection view updates.I want to made infinite scroll in both directions (up and down) that will show weeks with dates.I used scrollViewDidScroll for detecting the moment when I need to update my data source array and reload cells.I have huge lags on my iPhone 4S after method for updating collection view is called:UIView.performWithoutAnimation { () -> Void in self.calendarCollectionView.performBatchUpdates({ () -> Void in self.calendarCollectionView.insertItemsAtIndexPaths(indexes) }, completion: { (finish) -> Void in }) }I have tried this to load only previous
Topic: UI Frameworks SubTopic: UIKit Tags:
5
0
7.9k
Jul ’15
NSCalendar returns same date component difference for two different dates
I'm calculating the difference in months and days between two dates using- NSCalendar components:fromDateComponents:toDateComponents:options:Interestingly I get the same result for two different days:2014-07-30 - 2015-07-20: 11 months 20 days2014-07-31 - 2015-07-20: 11 months 20 daysThe relevant parts:NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierGregorian]; calendar.timeZone = [NSTimeZone timeZoneWithAbbreviation:@GMT]; NSCalendarUnit flags = NSCalendarUnitMonth | NSCalendarUnitDay; NSDateComponents *rslt = nil; // between 7/30/2014 and 7/20/2015: 11 months 21 days NSDateComponents *later = [NSDateComponents new]; later.year = 2015; later.month = 7; later.day = 20; NSDateComponents *earlier = [NSDateComponents new]; earlier.year = 2014; earlier.month = 7; earlier.day = 30; rslt = [calendar components:flags fromDateComponents:earlier toDateComponents:later options:0]; // rslt.month is 11, rslt.day is 20 // between 7/31/2014 and 7/20/2015: 11 months
Topic: UI Frameworks SubTopic: AppKit Tags:
2
0
349
Jul ’15
Reply to DP3 Exchange woes continue
I still cannot add the Exchange server to the list of outgoing (SMTP) mail servers.However, just as for the previous betas, I can still read email messages that come into my Exhcange account. I also cannot add the Exchange account to the calendar. Interestingly, notes added in the Notes app under the Exchange account sync just fine (OS X and iOS only though, not sure if these will be ever able to sync to Windows).
Topic: App & System Services SubTopic: Core OS Tags:
Jul ’15
Reply to DP3 Exchange woes continue
My exchange calendar actually just started showing up after upgrading to DP4. I didn't make any changes to any configuration at all...just did the upgrade (I always had the account added under settings - and it always *said* it was enabled in both System Preferences | Internet Accounts as well as the Accounts preferences of calendar itself).It didn't show up immediately after upgrading - but after about 30 minutes of churning on something, it just got displayed.
Topic: App & System Services SubTopic: Core OS Tags:
Jul ’15
Reply to Get the system language
Hi eskimo,Once again I apologize for my English, I try to be simple and direct.iPhone with iOS 7.1.2With:- Setting - General - International-> Language = English-> Voice Control = English-> Keyboards -> 3-> Region Format = Portugal-> Calendar = GregorianI have:[[NSLocale currentLocale] localeIdentifier] -> pt_PT[[NSBundle mainBundle] preferredLocalizations] -> one object with pt-PTWith:- Setting - General - International-> Language = Português (Portugal)-> Voice Control = Português-> Keyboards -> 3-> Region Format = Portugal-> Calendar = GregorianI have:[[NSLocale currentLocale] localeIdentifier] -> pt_PT[[NSBundle mainBundle] preferredLocalizations] -> one object with pt-PTiPhone with iOS 8.4With:- Setting - General - Language & Region-> iPhone Language = English-> Preferred Language Order = English, Português (Portugal)-> Keyboards -> 3-> Region = Portugal-> Calendar = Gregorian-> Advanced = Automatic - OnI h
Jul ’15
Reply to watchOS 2b4 slow & locks up
My watch locked up once. I don't often interact with my watch. I get notifications mostly (calendar reminders and imessage). I'm curious about the batter life b4.For me, b2 was unusable. I had 4hrs batter life. b3 broght it back to a day's use for me. I'm at almost 16hrs of use and showing 59% batter remaining. I'm wondering if the % remaining is working corretly. I'm not charging it tonight to see what the watch says when I wake up.For b3 I setup as a new watch and did not install any apps. I did the upgrade to b4 and it's been fine (except one lockup shortly after the upgrade).
Topic: App & System Services SubTopic: Core OS Tags:
Jul ’15
Unable to add Gmail Account
I had some issues after first installing Mail, so I took off all of the accounts. I could add most of them back just fine, but for the life of me can't get my Gmail accounts added back. In both Mail and the system prefers, it just hangs after you check which services you'd like (mail, contacts, calendar). It just sits at that sheet, and nothing happens. I've tried to add it both by selecing Google, and by adding it as an IMAP account. Any help would be appreciated!
10
0
2k
Jul ’15