зеркало из https://github.com/xamarin/ios-samples.git
Merge pull request #13 from bratsche/master
Updates the Makefile in MonoCatalogSample to use iOS 5.0
This commit is contained in:
Коммит
5117f27192
14
Make.common
14
Make.common
|
@ -1,3 +1,5 @@
|
|||
IOS_SDK_VERSION = 5.0
|
||||
|
||||
MONOTOUCH_MONO_PATH = /Developer/MonoTouch/usr/lib/mono/2.1
|
||||
MONOTOUCH_VERSION = 1.0
|
||||
MONOTOUCH_PREFIX = /Developer/MonoTouch
|
||||
|
@ -15,19 +17,19 @@ cycle:
|
|||
|
||||
dev: $(EXTRA_DEPS) device/$(APPDIR)
|
||||
-mkdir bin
|
||||
$(MTOUCH) -bundleid com.novell.monotouch.sample.$(EXE) -dev device/$(APPDIR) -c "iPhone Developer: $(DEVNAME)" $(EXE)
|
||||
$(MTOUCH) --sdk=$(IOS_SDK_VERSION) -bundleid com.novell.monotouch.sample.$(EXE) -dev device/$(APPDIR) -c "iPhone Developer: $(DEVNAME)" $(EXE)
|
||||
for f in $(DATA); do cp $$f device/$(APPDIR); done
|
||||
$(MTOUCH) -installdev device/$(APPDIR)
|
||||
$(MTOUCH) --sdk=$(IOS_SDK_VERSION) -installdev device/$(APPDIR)
|
||||
|
||||
launch: simulator/$(APP)
|
||||
-rm -f output error
|
||||
$(MTOUCH) --sdk=4.3 --launchsim=simulator/$(APPDIR) --stdout=output --stderr=error
|
||||
$(MTOUCH) --sdk=$(IOS_SDK_VERSION) --launchsim=simulator/$(APPDIR) --stdout=output --stderr=error
|
||||
|
||||
debug: simulator/$(APP)
|
||||
$(MTOUCH) --debugsim=simulator/$(APPDIR) --stdout=output --stderr=error
|
||||
$(MTOUCH) --sdk=$(IOS_SDK_VERSION) --debugsim=simulator/$(APPDIR) --stdout=output --stderr=error
|
||||
|
||||
simulator/$(APP): simulator/$(APPDIR) $(EXE) $(MTOUCH)
|
||||
$(MTOUCH) -bundleid com.novell.monotouch.sample.$(EXE) $(MFLAGS) -sim simulator/$(APPDIR) $(EXE)
|
||||
$(MTOUCH) --sdk=$(IOS_SDK_VERSION) -bundleid com.novell.monotouch.sample.$(EXE) $(MFLAGS) -sim simulator/$(APPDIR) $(EXE)
|
||||
for f in $(DATA); do cp $$f simulator/$(APPDIR); done
|
||||
|
||||
simulator/$(APPDIR):
|
||||
|
@ -37,7 +39,7 @@ device/$(APPDIR):
|
|||
mkdir -p device/$(APPDIR)
|
||||
|
||||
main.m: $(EXE) $(MTOUCH)
|
||||
$(MTOUCH) -v $(EXE)
|
||||
$(MTOUCH) --sdk=$(IOS_SDK_VERSION) -v $(EXE)
|
||||
|
||||
$(EXE): $(SOURCES)
|
||||
/Developer/MonoTouch/usr/bin/smcs $(SOURCES) -debug -r:monotouch.dll $(REFS) -out:$(EXE)
|
||||
|
|
|
@ -119,7 +119,8 @@ public partial class ToolbarViewController : UIViewController {
|
|||
break;
|
||||
|
||||
case 2:
|
||||
toolbar.BarStyle = UIBarStyle.BlackTranslucent;
|
||||
toolbar.BarStyle = UIBarStyle.Black;
|
||||
toolbar.Translucent = true;
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче