├── README.md ├── iOSMp3Recorder.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── txx.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── txx.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── iOSMp3Recorder.xcscheme │ └── xcschememanagement.plist └── iOSMp3Recorder ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── TXXAppDelegate.h ├── TXXAppDelegate.m ├── TXXViewController.h ├── TXXViewController.m ├── en.lproj ├── InfoPlist.strings └── TXXViewController.xib ├── iOSMp3Recorder-Info.plist ├── iOSMp3Recorder-Prefix.pch ├── lame.h ├── libmp3lame.a └── main.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/README.md -------------------------------------------------------------------------------- /iOSMp3Recorder.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOSMp3Recorder.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOSMp3Recorder.xcodeproj/project.xcworkspace/xcuserdata/txx.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder.xcodeproj/project.xcworkspace/xcuserdata/txx.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /iOSMp3Recorder.xcodeproj/xcuserdata/txx.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder.xcodeproj/xcuserdata/txx.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /iOSMp3Recorder.xcodeproj/xcuserdata/txx.xcuserdatad/xcschemes/iOSMp3Recorder.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder.xcodeproj/xcuserdata/txx.xcuserdatad/xcschemes/iOSMp3Recorder.xcscheme -------------------------------------------------------------------------------- /iOSMp3Recorder.xcodeproj/xcuserdata/txx.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder.xcodeproj/xcuserdata/txx.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /iOSMp3Recorder/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder/Default-568h@2x.png -------------------------------------------------------------------------------- /iOSMp3Recorder/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder/Default.png -------------------------------------------------------------------------------- /iOSMp3Recorder/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder/Default@2x.png -------------------------------------------------------------------------------- /iOSMp3Recorder/TXXAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder/TXXAppDelegate.h -------------------------------------------------------------------------------- /iOSMp3Recorder/TXXAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder/TXXAppDelegate.m -------------------------------------------------------------------------------- /iOSMp3Recorder/TXXViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder/TXXViewController.h -------------------------------------------------------------------------------- /iOSMp3Recorder/TXXViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder/TXXViewController.m -------------------------------------------------------------------------------- /iOSMp3Recorder/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iOSMp3Recorder/en.lproj/TXXViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder/en.lproj/TXXViewController.xib -------------------------------------------------------------------------------- /iOSMp3Recorder/iOSMp3Recorder-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder/iOSMp3Recorder-Info.plist -------------------------------------------------------------------------------- /iOSMp3Recorder/iOSMp3Recorder-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder/iOSMp3Recorder-Prefix.pch -------------------------------------------------------------------------------- /iOSMp3Recorder/lame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder/lame.h -------------------------------------------------------------------------------- /iOSMp3Recorder/libmp3lame.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder/libmp3lame.a -------------------------------------------------------------------------------- /iOSMp3Recorder/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpplusplus/iOSMp3Recorder/HEAD/iOSMp3Recorder/main.m --------------------------------------------------------------------------------