37 questions
-1
votes
1
answer
578
views
How to import and use KMP library (ios-artifact) in pure ios project?
I want to use KMP library in my pure iOS project but cannot figure out how to do it.
The library is available in different artifacts including android, -iosarm64, -iosx64, -iossimulatorarm64, etc.
I ...
1
vote
1
answer
263
views
How updating dynamic framework will affect App Store build
I have an app on the App Store and I have to create another app. This other app has some of the same functionalities as the first app. So I wanted to create a framework to put the common code in and ...
1
vote
0
answers
1k
views
Building static library with Swift package
I tried to build static library this way:
swift build -c release -Xswiftc "-sdk" -Xswiftc "`xcrun --sdk iphoneos --show-sdk-path`" -Xswiftc "-target" -Xswiftc "arm64-...
0
votes
2
answers
768
views
React Native: Unable to import React headers after updating to 0.60
After updating to React Native 0.60 the header linking does no longer work.
I'm having problems linking from the React library during build:
/Users/User/Developer/Project/node_modules/react-native-...
0
votes
1
answer
180
views
ResearchKit.framework error: Image not found
I have an Objective-C app I wrote roughly 12 months ago, with the iOS Deployment target set to 12.1 . I added the ResearchKit framework to it, and during the time of development the app was working ...
3
votes
1
answer
277
views
Is iOS state restoration possible in iOS library? -- Could not find a storyboard named
I have a library with a storyboard and controller classes that implement iOS state preservation.
To launch the library from the main app's delegate, I use the following:
- (BOOL)application:(...
0
votes
1
answer
830
views
Is it possible to write a C++ library that could be used in iOS and Android Native projects?
I want to write an app for both platforms, and I want it to be a native.
Still, I would like to have a write once run anywhere conception. Since the business logic would take a huge part of an app. ...
1
vote
1
answer
2k
views
How to import standalone Xcode Project as a module to another project?
Both projects use same frameworks. both have appdelegates. Successfully added both projects in workspace. but can not access each others controllers. making a static library of one project did not ...
0
votes
1
answer
195
views
How to use Package Manager - trying to implement Hedwig
I am trying to add Hedwig Library to my Existing project but i am unable to do so.
I added other Libraries through CocoaPods but this one doesn't have it.
I am new to iOS Development and couldn't ...
1
vote
0
answers
124
views
How to Create XIB/StoryBoard in Framework
I am creating Framework so i want to create some view in framework itself but i am unable access created XIB/StoryBoard in Framework to any project.
If anybody worked on please help me to solve out.
...
2
votes
0
answers
531
views
How to distribute iOS swift framework without the source code using pods?
I have been trying to create a git repo with my framework and trying to distribute it using pods. I have written a podspec which downloads all the dependencies as well as my framework. The pod ...
7
votes
1
answer
2k
views
How to make an universal iOS library for both Objective-C and Swift?
I need to make an library for iOS (either Framework or static library - I haven't decided yet) that can be used in both Objective-C and Swift projects. What is the best way of doing this? The way I ...
1
vote
3
answers
1k
views
Bridging Header File can't find an imported Objective-C project
I'm trying to import this library (SCRecorder) into my Swift project using the "Bridging Header File" method. But I really can't make it work. When I try to build the project, I get the following ...
12
votes
3
answers
16k
views
Module not found error when importing Swift pod into Objective-C project
I have an existing project which is written in Objective-C. I want to use the iOS Charts library by Daniel Gindi, which is in Swift, in that project. How can I achieve this?
importing swift framework ...
1
vote
1
answer
60
views
Xamarain iOS - Binding a library that only has ARMv7 architecture - what will be my issues?
I'm creating a binding for a library that I do not have access to the source for. It was built only for ARMv7.
First issue:
It will not work in the simulator - this is obvious, but the problem is ...
0
votes
1
answer
126
views
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 ...
0
votes
1
answer
202
views
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 ...
1
vote
0
answers
399
views
iOS Library for multiple architectures combined with slices
I have a compiled iOS sdk. There is an include folder that contains the header files for the library. There is a lib folder, and inside are folders arm64, armv7, armv7s, and i386. Inside each of these ...
0
votes
1
answer
168
views
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:@"...