Is there a way to add some uncompiled source code (in an NSString for example) and conditionally modify it and execute it at runtime?
4
-
I'm afraid you edited your question to the point where it doesn't make sense.Hot Licks– Hot Licks2013-04-03 16:10:34 +00:00Commented Apr 3, 2013 at 16:10
-
The original question was worded incorrectly due to my lack of understanding at the time. Is there anyway where I could delete this question altogether and start a new one?Matt– Matt2013-04-03 16:17:47 +00:00Commented Apr 3, 2013 at 16:17
-
From the App Store Review Guidelines: 2.7 Apps that download code in any way or form will be rejected 2.8 Apps that install or launch other executable code will be rejectedMarcus Adams– Marcus Adams2013-04-03 16:36:48 +00:00Commented Apr 3, 2013 at 16:36
-
You should see a delete option at the bottom of the post, just below the ios & objective-c tags.Hot Licks– Hot Licks2013-04-03 17:27:28 +00:00Commented Apr 3, 2013 at 17:27
Add a comment
|
2 Answers
Why not provide two frameworks or static libraries, one pre-compiled for use with CoreDate, and one for without?
1 Comment
Matt
I thought of that, and it's a very good option if it was only about Core Data. I am also planning on using several other frameworks, and it would be extremely tedious to provide a separate static library for each (not to mention their combinations). Thanks!