I have these entries in my project PCH, do I need to do anything so that these imports are transferred when installing the PCH?
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <CoreText/CoreText.h>
I have a DTCoreTextFontOverrides.plist that should be transferred as a resource, I add that to resources, right?
In the above mentioned podspec, I have some provision to add ALLOW_IPHONE_SPECIAL_CASES to the PCH file, but this is no longer necessary. How do I get rid of that without interfering with the imports mentioned in the first question?
> I have a DTCoreTextFontOverrides.plist that should be transferred as a resource, I add that to resources, right?
Yup. If you have just one file you can also use the alias `resource`.
> In the above mentioned podspec, I have some provision to add ALLOW_IPHONE_SPECIAL_CASES to the PCH file, but this is no longer necessary. How do I get rid of that without interfering with the imports mentioned in the first question?
With the aforementioned prefix_header_contents example, the ALLOW_IPHONE_SPECIAL_CASES won’t be added.
- basically it's a new tag
- The prefix_header_contents should replace the file.puts
- I am uncertain about the spec.resources, do I need a path there?
kind regards
Oliver Drobnik
Am 21.09.2012 um 18:34 schrieb Eloy Durán <eloy.de.en...@gmail.com>:
>> I have a DTCoreTextFontOverrides.plist that should be transferred as a resource, I add that to resources, right?
> Yup. If you have just one file you can also use the alias `resource`.
>> In the above mentioned podspec, I have some provision to add ALLOW_IPHONE_SPECIAL_CASES to the PCH file, but this is no longer necessary. How do I get rid of that without interfering with the imports mentioned in the first question?
> With the aforementioned prefix_header_contents example, the ALLOW_IPHONE_SPECIAL_CASES won’t be added.
> - basically it's a new tag
> - The prefix_header_contents should replace the file.puts
> - I am uncertain about the spec.resources, do I need a path there?
> kind regards
> Oliver Drobnik
> Am 21.09.2012 um 18:34 schrieb Eloy Durán <eloy.de.en...@gmail.com>:
>>> I have these entries in my project PCH, do I need to do anything so that these imports are transferred when installing the PCH?
>>> I have a DTCoreTextFontOverrides.plist that should be transferred as a resource, I add that to resources, right?
>> Yup. If you have just one file you can also use the alias `resource`.
>>> In the above mentioned podspec, I have some provision to add ALLOW_IPHONE_SPECIAL_CASES to the PCH file, but this is no longer necessary. How do I get rid of that without interfering with the imports mentioned in the first question?
>> With the aforementioned prefix_header_contents example, the ALLOW_IPHONE_SPECIAL_CASES won’t be added.
Oops, I just now saw all the discussion on the commit (GitHub is not loading any CSS for me atm, so it’s hard to read), looks like they already got you covered :)
On Jan 9, 2013, at 12:34 PM, Eloy Durán <eloy.de.en...@gmail.com> wrote:
>> - basically it's a new tag
>> - The prefix_header_contents should replace the file.puts
>> - I am uncertain about the spec.resources, do I need a path there?
>> kind regards
>> Oliver Drobnik
>> Am 21.09.2012 um 18:34 schrieb Eloy Durán <eloy.de.en...@gmail.com>:
>>>> I have these entries in my project PCH, do I need to do anything so that these imports are transferred when installing the PCH?
>>>> I have a DTCoreTextFontOverrides.plist that should be transferred as a resource, I add that to resources, right?
>>> Yup. If you have just one file you can also use the alias `resource`.
>>>> In the above mentioned podspec, I have some provision to add ALLOW_IPHONE_SPECIAL_CASES to the PCH file, but this is no longer necessary. How do I get rid of that without interfering with the imports mentioned in the first question?
>>> With the aforementioned prefix_header_contents example, the ALLOW_IPHONE_SPECIAL_CASES won’t be added.
Because that’s how it knows how to treat your version in comparisons when determining if it matches. If the operator would assume that `1.1` is equal to `1.1.0`, then you wouldn’t be able to specify that any version between `1.1` and `2.0` is allowed.
On Mar 14, 2013, at 12:16 PM, Oliver Drobnik <oli...@drobnik.com> wrote:
> -- > You received this message because you are subscribed to the Google Groups "CocoaPods" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to cocoapods+unsubscribe@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.