Questions tagged [tapku]

Tapku Library is an open source iOS framework built for iPhone & iPad.

Tapku Library is an open source iOS framework built for iPhone & iPad. The framework includes popular API's including coverflow, calendar grid and chart view. The framework also has tidbits of code that will make iPhone and iPad development all the more enjoyable and faster.

103 questions
0
votes
1 answer

Having Trouble With Tapku Library

I've been trying to add this library to my project but I'm getting all sorts of warnings. Can anyone help me out?
user594161
0
votes
0 answers

Refactoring an app written in objective C?

I need to refactor an app, written long time ago. As a begginer, I'm struggling a little bit with a bunch of new question. It was written in objective C. It has included some frameworks (security, coredata, quartzcore, mapkit...) and application…
Generator
  • 21
  • 3
0
votes
1 answer

How to set marks with event in tapku library for JSON data that contain start date and last date?

This is my JSON data result=( { currentCheckIn = 1501678485000; firstCheckIn = 1501649015000; id = 1; }, { currentCheckIn = 1501822548000; firstCheckIn = 1501822547000; id = 2; …
Prasen
  • 81
  • 1
  • 7
0
votes
0 answers

"TapkuLibrary/TapkuLibrary.h" File Not Found

I am trying to build my app but I received an error that "TapkuLibrary/TapkuLibrary.h" file not found but the file is added to my references. I am not the one who did this project, this was just past to me without proper turn over. I actually…
chano
  • 21
  • 1
  • 8
0
votes
0 answers

Events are not displayed in Day view of Tapku Calendar

Events are displayed in such case. - (void)viewDidLoad { [super viewDidLoad]; self.data = @[@[@"Hamburger Bliss", @"Wendys", @15, @0, @18, @0], @[@"Fishy Fishy Fishfelayyyyyyyy", @"McDonalds", @5, @30, @6, @0]]; } But if hours are…
0
votes
1 answer

Method in protocol not implemented correctly

I am using the Tapku library to add the calendar in my view. I am getting semantic issue calendarMonthView:marksFromDate:toDate:'in protocol 'TKCalendarMonthViewDataSource' not implemented on line @implementation ViewController in my view…
Carlos Alan
  • 27
  • 11
0
votes
1 answer

how to show mark on tapku library for json data which contain start date and end date?

I have googled out about how to mark date in tapku library. According to them i have code below for JSON i get, but it show mark either to whole calender or none date. Here is my JSON data: [ { id: "2", repeat: "0", allDay: false, …
0
votes
0 answers

Add Calender View with multiple dates selection

I want to add Calendar View to the app,i have tried Tapku and kal but both of them does not provide multiple Dates selection, is there any that can provide multiple date selection calendar view like user can select many dates as he wants from the…
Shehbaz Khan
  • 1,892
  • 3
  • 24
  • 31
0
votes
1 answer

Convert a NSString to a NSDate

I have a NSString like this 05/09/2015 then I want to convert it into this format 2014-07-28 18:30:00 +0000 that second date was the one that I get from the system date. That date can be placed nicely on Tapku calender. but my string is the first…
user2889249
  • 899
  • 2
  • 13
  • 22
0
votes
2 answers

Tapku not integrating

Continuing from this question here Tapku Calander integration errors I tried the solution and it didn't work. I have the exact same issue as the author of that question. Any ideas?
Jargen89
  • 480
  • 1
  • 6
  • 19
0
votes
1 answer

Disable past dates on tapku

Is there any way to disable the past dates or the desired dates in tapku calendar? Where in tapku, pressing the date occurs? I could not find it. Is it possible to set the minimum date, like in the datepicker?
0
votes
1 answer

How to get return value from another class's function in objective-c?

This is the method from Tapku and I want to call it from the controller - (NSDate*) dateSelected{ if(selectedDay < 1 || selectedPortion != 1) return nil; TKDateInformation info = [monthDate dateInformationWithTimeZone:[NSTimeZone…
0
votes
1 answer

Tapku Calendar integration errors

I am working with a project and in that I want to integrateing a tapku calendar. I followed all the steps and integrated the calendar. But unfortunately I am getting the error due to which my build is failing again and again. The error is as…
Sahil
  • 5
  • 4
0
votes
3 answers

Date format of Tapku Calendar

In the API , the selected day format is like 2013-11-01T23:00:00%2B0000 But my date format is like this: 2013-11-01T23:00:00+0000 To convert, I have used below code: NSString *plus = [NSString stringWithFormat:@"%@%@", [timeStamp…
santa
  • 147
  • 1
  • 4
  • 16
0
votes
1 answer

Marks Date on calender Tapku

I have below api. I need to mark the days that i have here. But the formate of the library date is like this: @"2013-08-12 00:00:00 +0000" How can I add my api below like this date formate? { "year": "2013", "month": "08", …
santa
  • 147
  • 1
  • 4
  • 16