You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am experiencing an issue when using 'MTPDF' within my Swift project. The pod is installed on a clean project.
The issue returned is(as the title states): 'NSDate+MTDates.h' file not found with include; use "quotes" instead
The problem occurs in MTPDF.m on line 10: #import < NSDate+MTDates.h>
I'm unable to fix it without having to edit the MTPDF.m file itself. The issue is resolved when switching from import to "quoted" import.
Podfile:
`platform :ios, '9.0'
use_frameworks!
target 'MyTarget' do
pod "MTPDF"
end`
I'm using Xcode 7.3
The text was updated successfully, but these errors were encountered:
Hmmm. I havent used this project in a long time, so I'm curious if something in Apples or Cocoapods has changed recently. If you can find some evidence that something has changed and quoting is now the correct way to do it, I would accept a pull request
I am experiencing an issue when using 'MTPDF' within my Swift project. The pod is installed on a clean project.
The issue returned is(as the title states):
'NSDate+MTDates.h' file not found with include; use "quotes" instead
The problem occurs in MTPDF.m on line 10: #import < NSDate+MTDates.h>
I'm unable to fix it without having to edit the MTPDF.m file itself. The issue is resolved when switching from import to "quoted" import.
Podfile:
`platform :ios, '9.0'
use_frameworks!
target 'MyTarget' do
pod "MTPDF"
end`
I'm using Xcode 7.3
The text was updated successfully, but these errors were encountered: