Questions tagged [ios-library]

Library or framework for developing iOS apps

36 questions
0
votes
1 answer

iOS static library issue with referencing files

I am having an issue, created iOS App and convert it to Static Library. The problem i am facing is that when i build the static library it compiles and builds without any issues. When i try to use the library in another app, when i reference the…
Borce Ivanovski
  • 561
  • 1
  • 4
  • 23
0
votes
1 answer

How to get file in a library iOS

I am trying to construct a library in IOS. In my library ,I use a method -(void)loadNewData to load some data EX:test.csv. But when I export my library and let the other app use my library to excute the loadNewData method. I found it can not be…
0
votes
2 answers

How to create Library project in iOS like android

I am new in iOS development. I have created multiple library projects in Android like facebook library. Now I want to do same in iOS. How can I create Library project in iOS..
Akash Doshi
  • 421
  • 1
  • 4
  • 8
0
votes
1 answer

Undefined symbol whenever linking with a framework on Xcode

I am trying to link my framework A with another non-standard framework B, developed other folks. I am adding B to the "link Binary with Libraries" build setting of A. This allows the compiler to locate the header file of B i am including at…
sramij
  • 4,775
  • 5
  • 33
  • 55
0
votes
1 answer

MBCalendarKit: Connecting CKCalendarDataSource to Core Data

I'm connecting MBCalendarKit with Core Data. This is the code to build a dictionary of events: for (Task *task in _taskArray) { _event = [CKCalendarEvent eventWithTitle:[task valueForKey:@"title"] andDate:[task valueForKey:@"startDate"]…
carlodurso
  • 2,886
  • 4
  • 24
  • 37
-1
votes
1 answer

Making UI elements programmatically in iOS using Xcode in Objective-C

I am trying to parse json data and convert it to form in iOS. I am successfully able to parse data and display it, however, i want to fix the UI and make it look more like an iOS form, perhaps using tableviews, etc. How do I approach this? should I…
JJ S.
  • 84
  • 7
1 2
3