Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Hi can anyone help in developing my own calendar,i have seen tapku library and also other different options available,but i am not getting anything .can anyone suggest me from where i have to start and what approach to follow i just want to create a custom calendar.
I want something that can push me to start with this.
Creating Calendar functionality is a lot of work, why don't you use something like Kal or tapku. I once used Kal and it works fine.
Anyways, if you want to create your own you should consider following
Decide on calendar view - whether you want to show grid view, list view, or day view.
Create event - where do you want to add events, in iPhone Calendar or in your own database. If it is your own database then you have to create your database and write procedures to add events.
Set Notifications - If it is your own database then you have to set notifications for alerts.
These are just few things came in my mind. What unique thing will you offer in your calendar. If not then it is just the waste of time!!!!
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I want to insert data into a table view cell in Xcode automatically so that it grabs data from my Firestore database and inserts into the cells. I have two questions:
1) Is this possible, and if so, how would I do it?
2) If I wanted to use something like a listener, so it would update in realtime, how would I do this?
Thank you so much!
If you are developing for IOS 13+ you can try to use combine for that check this link:
http://trycombine.com/posts/combinedatasources-simple-static-list/
Also if there’s a framework called RxSwift that you can create reactive code based on incomes from Firebase real time data. You can check it out here:
https://github.com/ReactiveX/RxSwift
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I have finished an online course in iOS development on Udemy and I'm ready to start developing my first (real) app.
My goal is to make a teleprompter app similar to: https://itunes.apple.com/dk/app/video-teleprompter-lite/id1031079244?mt=8
To start with, I would like to create just the moving text. I have looked at various concepts such as Core Animation, Text View, Segue from one view controller to another etc. But none of them seem to be able to display the moving text in the proper "teleprompter way".
I would really appreciate suggestions as to how to start/which relevant concepts to look at in this context.
Try reading up on UIDynamics, UIPushBehavior.
https://developer.apple.com/reference/uikit/uidynamicanimator
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I want to make Social Community app in iphone.Just like i want to develope online chating functionality. I have list of users who are logged into my application.My application is iphone application.How can i do that?any tutorial or sample code for that?
I would like to suggest you to go for push notification. Cause I have used it in one of my app. And it's really good rather than using other.
http://quickblox.com/developers/SimpleSample-chat_users-ios this link will help you somewhat
you can also try this link
this sample demonstrates how QuickBlox Chat API works. VIDEO TUTORIAL
It allows to organize chat in room & chat 1 on 1.
It shows how to: - Organize chat between 2 users - Organize chat in room
You can download this code sample here
just googled the things and you will find lots of more useful tutorial..
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am trying to make an application with a day-view-calendar in it. I know there are quite a few questions that implicit the same as mine, but I haven't found an answer that makes it clear for me.
I want to make a day-view-calendar which contains several (5 or 6) columns. So that you can add items for 5 or 6 different users in one view.
Furthermore I want to have the lay-out similar to the iPhone calendar day view.
I am totally new here, can someone please help me how to solve my "issue"?
I think you should use tapku calendar library to get the same view.
https://github.com/devinross/tapkulibrary
Check this it may help you
You can use anyone of these
https://github.com/Clancey/UICalendar
https://github.com/kovpas/PMCalendar
https://github.com/vgrichina/ios-calendar
https://github.com/jaykz52/CKCalendar
Checkout i created day view using Tapku library DayView
I have customized to some extent just like iCalender
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
The path for the thumbnails of the images located in the iPhone is: /private/var/mobile/Media/DCIM/100APPLE/.MISC/ (or instead of 100APPLE we have 101APPLE, 102APPLE etc).
If I want to pick these images directly from these folders, what is the best way to improvise a nice picker like the one for UIImagePickerControllerSourceTypePhotoLibrary?
I have already seen some attempts using UITableView and UIPickerView. Any other ideas?
Any recommended TUTORIAL?
what is the best way?
I really don't know so ideas still welcome.
Any other ideas?
Yes. Using a thumbnail scrollview.
Any recommended TUTORIAL?
Not a tutorial but even better, sample code. Using sample code from Apple Developer:
Autoscroll from ScrollViewSuite
I previously wrote "Your application runs in a sandbox. This means that directories like /private/var are not available to your application. It is therefore not possible to create a custom picker that looks directly in those folders."
This turns out not to be the case. I am totally surprised that iPhone applications do actually have access to most of the filesystem.