苹果下拉菜单拉不出来菜单如何进退?

苹果手机菜单变大怎么处理?_百度知道
苹果手机菜单变大怎么处理?
苹果三代16G手机,菜单变大,电话不能打也不能接。
我有更好的答案
三个手指一起连点两下,就缩小了
其他类似问题
为您推荐:
您可能关注的推广回答者:
苹果手机的相关知识
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁我有弹出打开一个NSMenu一个项目,我有一个代表组和它的正确挂接(-(void)menuNeedsUpdate:(NSMenu *)menu正常工作)。这就是说,是安装前会显示被调用,我需要侦听,并触发一个请求,以后更新,而它是开放的 CodeGo.net,我想不通怎么说的应该做的事情。
好吧,我现在在这里:
当您单击项目(在pubs),选择器被称为一个运行NSTask。通知中心,听取当该任务完成后进行,并写:
[[NSRunLoop currentRunLoop] performSelector:@selector(updateTheMenu:) target:self argument:statusBarMenu order:0 modes:[NSArray arrayWithObject:NSEventTrackingRunLoopMode]];
- (void)updateTheMenu:(NSMenu*)menu {
NSMenuItem *mitm = [[NSMenuItem alloc] init];
[mitm setEnabled:NO];
[mitm setTitle:@"Bananas"];
[mitm setIndentationLevel:2];
[menu insertItem:mitm atIndex:2];
[mitm release];
肯定是所谓的,如果我点击了,并返回到它,我得到一个与它。问题是,它没有更新,而为开。
本文地址 :CodeGo.net/154179/
-------------------------------------------------------------------------------------------------------------------------
1. 这里的问题是,你需要你的回调得到触发,即使轨迹模式。
例如,-[NSTask waitUntilExit]“民调当前运行NSDefaultRunLoopMode,直到它不会得到执行后,直到关闭在这一点上,updateTheMenu在NSCommonRunLoopMode运行没有帮助 CodeGo.net,它不能回去,毕竟。我相信NSNotificationCenter观察家也只能触发NSDefaultRunLoopMode。
如果你能找到办法,即使是在轨迹模式下运行得到一个回调,你设置,你可以从回调调用updateTheMenu直接。
- (void)updateTheMenu {
static BOOL flip = NO;
NSMenu *filemenu = [[[NSApp mainMenu] itemAtIndex:1] submenu];
if (flip) {
[filemenu removeItemAtIndex:[filemenu numberOfItems] - 1];
[filemenu addItemWithTitle:@"Now you see me" action:nil keyEquivalent:@""];
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
NSTimer *timer = [NSTimer timerWithTimeInterval:0.5
target:self
selector:@selector(updateTheMenu)
userInfo:nil
repeats:YES];
[[NSRunLoop currentRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];
运行此并按住,你会看到该项目出现和消失每隔半秒。 “每半秒”是不是你要找的内容,并且不明白“当我的后台任务完成”。但也有可能是同样你
如果没有,你可以建立你自己出NSPORT子类,比如之一,创建一个NSMessagePort,有你的NSTask写入,当它完成。
你真的需要明确updateTheMenu罗布Keniger上述方式的唯一情况是,如果你想从运行循环外调用它。例如,你可以生成一个线程将触发off一个子进程,并调用waitpid函数(哪些块,直到该进程完成),那么该线程将不得不调用performSelector:目标:而不是直接调用updateTheMenu。
菜单轨迹是在一个特殊的运行循环模式下进行(NSEventTrackingRunLoopMode)。为了修改需要派遣,这样它会在事件轨迹模式进行处理。做到这一点最简单的方法是NSRunLoop:
[[NSRunLoop currentRunLoop] performSelector:@selector(updateTheMenu:) target:self argument:yourMenu order:0 modes:[NSArray arrayWithObject:NSEventTrackingRunLoopMode]]
您也可以指定模式NSRunLoopCommonModes并会在任何运行循环模式被发送,其中包括NSEventTrackingRunLoopMode。
你会再这样做:
- (void)updateTheMenu:(NSMenu*)menu
[menu addItemWithTitle:@"Foobar" action:NULL keyEquivalent:@""];
[menu update];
(如果你想改变类似于如何布局的节目,当你选择单击它,然后继续阅读。如果你想要做的完全不同,那么这个答案可能不那么相关的,只要你愿意。)
关键是-[NSMenuItem setAlternate:]。举个例子,假设我们要建立一个NSMenu具有Do something...作用于它。你会编写,高达为这样的:
NSMenu * m = [[NSMenu alloc] init];
NSMenuItem * doSomethingPrompt = [m addItemWithTitle:@"Do something..." action:@selector(doSomethingPrompt:) keyEquivalent:@"d"];
[doSomethingPrompt setTarget:self];
[doSomethingPrompt setKeyEquivalentModifierMask:NSShiftKeyMask];
NSMenuItem * doSomething = [m addItemWithTitle:@"Do something" action:@selector(doSomething:) keyEquivalent:@"d"];
[doSomething setTarget:self];
[doSomething setKeyEquivalentModifierMask:(NSShiftKeyMask | NSAlternateKeyMask)];
[doSomething setAlternate:YES];
//do something with m
现在,你可能认为这将创建两个项目的那样:“做和”做,你会是部分正确。我们设定的项目为替,并有项目等效键(但不同的修饰符掩码),则只有优先个(即,一个是默认setAlternate:NO)将显示。然后,当你已经打开,如果你按代表第二个(即选项键)的修饰符掩码,则项目将在真正的转变从项目到秒。
此,例如,是怎样的作品。如果你点击一次就可以了,你会看到几个选项用省略号在他们之后,如“重新启动...”与“关机...”。该HIG规定,如果有一个省略号,系统将执行操作之前提示确认。但是,如果您按下选项键(带仍处于打开状态),你会发现,他们改变“重新启动”和“关闭”。省略号走开,如果你选择它们,而选项键被按下时,他们将不提示您进行确认执行。
在项目的一般函数也是如此的。你可以有成为“候补”项目的,只显示了该选项键被按下.a旦你理解了基本原理,它实际上是很容易没有一大堆挂羊头卖狗肉的。
本文标题 :如何更新苹果AirPort菜单,而它是开放的? (如何更改NSMenu时,它已经打开)
本文地址 :CodeGo.net/154179/
Copyright (C) 2014 CodeGo.net 沪ICP备号 联&系& c&o&d&e&g&o &@&1&2&6&.&c&o&mmac os x是直接进mac系统,该如何设置才能有选择进入系统的菜单?
mac os x是直接进mac系统,该如何设置才能有选择进入系统的菜单?
09-02-24 & 发布
如何在PC上安装Mac OS X系统  作者:IT168 刀锋【IT168 软件技巧】苹果的计算机和操作系统一向被成为“完美艺术”的结晶,在图形设计领域有着不可替代的背景,但是苹果机的价格也一直被认为是高端而让很多人不敢涉足,其实目前苹果机已经悄悄走进我们的生活。但是如何在普通的PC上安装Mac OS,也能够让我们提前领略一下苹果带来的惊喜。当然这里我们不是探讨如何在虚拟机上运行,而是实实在在安装在自己的PC上。最近笔者偶得一张Mac OS 10.4.7(包括一张Mac OS X JAS版DVD光盘,一张Mac OS X应用程序包CD),于是乎拿自己的本本开刀……我们仅就Mac系统的安装进行详细的解释,也许您有更好的方法,希望也能够拿来一起与大家分享,体验Mac DIY的精彩。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&Mac OS 光盘MAC OS X JAS版的意义:Mac OS的最新版本是10,就是大家熟悉的Mac OS X。之前一些技术狂热者和苹果信徒们开发出了诸如Pear PC之类的软件,使得可以在x86架构PC上模拟出一台类似苹果的计算机并在它上面运行Mac OS,但是由于是使用虚拟机的形式运行,故而运行的Mac OS运行迟缓,亦无没有丝毫实用价值。而本文恰恰介绍的是能够不用任何模拟软件就将MAC OS X直接安装在PC机上,并且能迅速运行之。系统硬件的最低配置:screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&测试笔记本支持SSE2/SSE3的CPU(此盘要求INTEl/AMD);256MB的内存;6GB以上的硬盘;一块比较现代的显卡(一般ATI的显卡基本可以,而比较特殊的是NV显卡、英特尔集成显卡,前者因为没有相关驱动,而后者只支持GMA900);支持至少分辨率的显示器;由于Mac安装盘是DVD的,故一般的DVD光驱即可。预先做好适当的文件系统:由于Mac OS X采用的是苹果的HFS+文件系统,而Windows和Linux都不支持此类分区,甚至连一些常用的磁盘工具也无法识别它们,因此在安装之前,必须为Mac OS X准备好可用的分区。由于Mac OS X盘只能够识别FAT32文件系统,不像XP盘都能够识别NTFS和FAT32,所以事先将磁盘格式化为FAT32就可以了, 给后面Mac安装的分区做铺垫。用XP安装盘或Partition Magic此类软件,对准备安装MAC系统的空间进行格式转换,在接下来的安装过程中用的到。系统安装的具体过程:screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&启动菜单前序的装备工作都做好了,就可直接进入正题,在BIOS中把启动方式设置为光盘启动,然后放入光盘,重新启动。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&安装提示启动时很快就会出现提示语句,“按回车键进行安装,或F8进入启动选项”,当然按回车键。几秒钟之后,就可以看到Mac OS X启动画面界面,乳白的底色、中央有一个苹果LOGO,LOGO下面是呈圆形的进度条,相当简洁。此过程比较长,大约需要3至4分钟时间。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&白色背景的苹果LOGOscreen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&选择语言从盘中读取数据以后,安装才正式开始,第一步是选择语言,MAC拥有15种不同国家的语言,在系统安装时或装好以后都可以调整,只要你选一种看的懂的就可以了。选定简体中文后进入下一步,这时会出现蓝白相间的进度条。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&正在安装待载入完毕后,就能看到安装的主界面了。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&安装主界面首先是介绍Mac的几个重要组件,大致明白后请接着往下走,下一项是软件许可协议,选择同意进入下一步。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&安装选项同意以后,接着会显示不同的选项,此时的目的就是把系统安装到你转换好的分区里。所以需要你调出“实用程序”下的“磁盘工具”,找到前面那个已然格式化好的FAT32分区(此时如果是NTFS就不会被识别),转换成Mac可以用的HFS+文件系统,选择“磁盘工具”下的“分区”选项,从格式中选定:“Mac OS 扩展(日志式)”,点分区,再确认一下就OK了(XP系统则没有这一步)。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&安装程序和驱动分区的步骤完成后,说明你已经成功地把Mac所需要的磁盘文件系统转换出来,即可以退出实用工具,再进入安装程序了,你会发现刚刚转换过的分区能够被顺利地找到。接着需要特别注意的是:打补丁阶段,此时选择“自定义安装”。由于在基本安装项中少了很多必须的软件包,在自定义安装中,选择你所需要的软件包,若是INTEL处理器的则要把INTEL SEE2和SEE3指令集还有COMBO UPDATE这三项全选上,AMD平台也必须将相对应的三项必须选上,而其他的选项则根据实际情况进行选择即可。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&安装补丁此外使用ATI X1600以上的显卡请把X1600补丁选上。如果您的本本是采用VIA系统的,请将VIA芯片组的驱动也选择上。不过遗憾的是,目前还不支持英特尔的无线网卡,如果您是迅驰本本还需要另外购买一块无线网卡。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&检查文件完整性到这步以后,该选的大致差不多了,接着系统要求检测Mac盘中的文件是否完整(若是新盘建议检测一下,若是以前使用过的,即可跳过,如此能够节省很多时间)。系统安装的最后步骤:screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&正在安装Mac OS X在拷贝文件时是先将最基本的系统程序复制到硬盘上,然后再安装各项硬件驱动,如打印机驱动(Mac支持的打印机品牌没有XP那么多)。15种语言包是在驱动程序安装完后加载到系统中,最后安装是的在“自定义安装选项”内选定的各个补丁。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&Mac OS界面完事以后,Mac系统基本上是安装好了,此时系统会提示重新启动,你只需取出光盘,跟着重启就可以了。进入系统以后(Mac系统启动速度比XP的要快很多),你会发现是英文的,虽然你安装时你选择的是简体中文,不过也无须着急,只要在控制面板里设置下就搞定了。至此,安装正式完成!系统安装注意事项:1、安装的准备工作:检测硬件性能,根据上述所讲的每项,进行比较; 转换磁盘格式,Mac OS X盘是无法识别NTFS文件系统;2、安装过程中请务必选择自定义安装选项,并且选择上所有必须的补丁包,一次性安装完,否则有缺少的话,还是要重新安装一次的。若你是一直按照默认的安装步骤进行,安装完后重启到启动画面时就会出现死机状态;3、安装系统是无需序列号或激活。 苹果是靠卖硬件发财的,软件只是为硬件服务的,可以说是买硬件附送软件;4、本盘只支持INTEL、AMD的CPU,故而稍有些许局限,其他还有比这个版本低的,如10.4.3/10.4.4版,则需要另外的模拟软件支持,用的比较多的是UltraISO、Daemon Tools、Ghost……诸如此类,则需读者自己慢慢去体验了。文章写到这,也接近尾声了,最后值得一提的是Mac系统的特性(不然装了都不知道为什么好):它是基于UNIX的核心系统,增强了系统的性能、稳定性以及响应能力。且能通过对称多处理技术充分发挥双处理器的优势,提供无与伦比的2D、3D和多媒体图形性能以及广泛的字体支持和集成的PDA功能。Mac OS X通过Classic环境几乎可以支持所有的Mac OS 9应用程序,直观的Aqua用户界面使MACintosh的易用性又达到了一个全新的水平,所以大都多的人买苹果机都用于图形处理领域。
请登录后再发表评论!
如何在PC上安装Mac OS X系统  作者:IT168 刀锋【IT168 软件技巧】苹果的计算机和操作系统一向被成为“完美艺术”的结晶,在图形设计领域有着不可替代的背景,但是苹果机的价格也一直被认为是高端而让很多人不敢涉足,其实目前苹果机已经悄悄走进我们的生活。但是如何在普通的PC上安装Mac OS,也能够让我们提前领略一下苹果带来的惊喜。当然这里我们不是探讨如何在虚拟机上运行,而是实实在在安装在自己的PC上。最近笔者偶得一张Mac OS 10.4.7(包括一张Mac OS X JAS版DVD光盘,一张Mac OS X应用程序包CD),于是乎拿自己的本本开刀……我们仅就Mac系统的安装进行详细的解释,也许您有更好的方法,希望也能够拿来一起与大家分享,体验Mac DIY的精彩。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&Mac OS 光盘MAC OS X JAS版的意义:Mac OS的最新版本是10,就是大家熟悉的Mac OS X。之前一些技术狂热者和苹果信徒们开发出了诸如Pear PC之类的软件,使得可以在x86架构PC上模拟出一台类似苹果的计算机并在它上面运行Mac OS,但是由于是使用虚拟机的形式运行,故而运行的Mac OS运行迟缓,亦无没有丝毫实用价值。而本文恰恰介绍的是能够不用任何模拟软件就将MAC OS X直接安装在PC机上,并且能迅速运行之。系统硬件的最低配置:screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&测试笔记本支持SSE2/SSE3的CPU(此盘要求INTEl/AMD);256MB的内存;6GB以上的硬盘;一块比较现代的显卡(一般ATI的显卡基本可以,而比较特殊的是NV显卡、英特尔集成显卡,前者因为没有相关驱动,而后者只支持GMA900);支持至少分辨率的显示器;由于Mac安装盘是DVD的,故一般的DVD光驱即可。预先做好适当的文件系统:由于Mac OS X采用的是苹果的HFS+文件系统,而Windows和Linux都不支持此类分区,甚至连一些常用的磁盘工具也无法识别它们,因此在安装之前,必须为Mac OS X准备好可用的分区。由于Mac OS X盘只能够识别FAT32文件系统,不像XP盘都能够识别NTFS和FAT32,所以事先将磁盘格式化为FAT32就可以了, 给后面Mac安装的分区做铺垫。用XP安装盘或Partition Magic此类软件,对准备安装MAC系统的空间进行格式转换,在接下来的安装过程中用的到。系统安装的具体过程:screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&启动菜单前序的装备工作都做好了,就可直接进入正题,在BIOS中把启动方式设置为光盘启动,然后放入光盘,重新启动。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&安装提示启动时很快就会出现提示语句,“按回车键进行安装,或F8进入启动选项”,当然按回车键。几秒钟之后,就可以看到Mac OS X启动画面界面,乳白的底色、中央有一个苹果LOGO,LOGO下面是呈圆形的进度条,相当简洁。此过程比较长,大约需要3至4分钟时间。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&白色背景的苹果LOGOscreen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&选择语言从盘中读取数据以后,安装才正式开始,第一步是选择语言,MAC拥有15种不同国家的语言,在系统安装时或装好以后都可以调整,只要你选一种看的懂的就可以了。选定简体中文后进入下一步,这时会出现蓝白相间的进度条。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&正在安装待载入完毕后,就能看到安装的主界面了。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&安装主界面首先是介绍Mac的几个重要组件,大致明白后请接着往下走,下一项是软件许可协议,选择同意进入下一步。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&安装选项同意以后,接着会显示不同的选项,此时的目的就是把系统安装到你转换好的分区里。所以需要你调出“实用程序”下的“磁盘工具”,找到前面那个已然格式化好的FAT32分区(此时如果是NTFS就不会被识别),转换成Mac可以用的HFS+文件系统,选择“磁盘工具”下的“分区”选项,从格式中选定:“Mac OS 扩展(日志式)”,点分区,再确认一下就OK了(XP系统则没有这一步)。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&安装程序和驱动分区的步骤完成后,说明你已经成功地把Mac所需要的磁盘文件系统转换出来,即可以退出实用工具,再进入安装程序了,你会发现刚刚转换过的分区能够被顺利地找到。接着需要特别注意的是:打补丁阶段,此时选择“自定义安装”。由于在基本安装项中少了很多必须的软件包,在自定义安装中,选择你所需要的软件包,若是INTEL处理器的则要把INTEL SEE2和SEE3指令集还有COMBO UPDATE这三项全选上,AMD平台也必须将相对应的三项必须选上,而其他的选项则根据实际情况进行选择即可。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&安装补丁此外使用ATI X1600以上的显卡请把X1600补丁选上。如果您的本本是采用VIA系统的,请将VIA芯片组的驱动也选择上。不过遗憾的是,目前还不支持英特尔的无线网卡,如果您是迅驰本本还需要另外购买一块无线网卡。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&检查文件完整性到这步以后,该选的大致差不多了,接着系统要求检测Mac盘中的文件是否完整(若是新盘建议检测一下,若是以前使用过的,即可跳过,如此能够节省很多时间)。系统安装的最后步骤:screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&正在安装Mac OS X在拷贝文件时是先将最基本的系统程序复制到硬盘上,然后再安装各项硬件驱动,如打印机驱动(Mac支持的打印机品牌没有XP那么多)。15种语言包是在驱动程序安装完后加载到系统中,最后安装是的在“自定义安装选项”内选定的各个补丁。screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& onclick=&function anonymous() { if(!this.resized) {} else {window.open(';} }& src=&& onload=&function anonymous() { if(this.width&screen.width*0.7) {this.resized= this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';} }& border=&0& /&Mac OS界面完事以后,Mac系统基本上是安装好了,此时系统会提示重新启动,你只需取出光盘,跟着重启就可以了。进入系统以后(Mac系统启动速度比XP的要快很多),你会发现是英文的,虽然你安装时你选择的是简体中文,不过也无须着急,只要在控制面板里设置下就搞定了。至此,安装正式完成!系统安装注意事项:1、安装的准备工作:检测硬件性能,根据上述所讲的每项,进行比较; 转换磁盘格式,Mac OS X盘是无法识别NTFS文件系统;2、安装过程中请务必选择自定义安装选项,并且选择上所有必须的补丁包,一次性安装完,否则有缺少的话,还是要重新安装一次的。若你是一直按照默认的安装步骤进行,安装完后重启到启动画面时就会出现死机状态;3、安装系统是无需序列号或激活。 苹果是靠卖硬件发财的,软件只是为硬件服务的,可以说是买硬件附送软件;4、本盘只支持INTEL、AMD的CPU,故而稍有些许局限,其他还有比这个版本低的,如10.4.3/10.4.4版,则需要另外的模拟软件支持,用的比较多的是UltraISO、Daemon Tools、Ghost……诸如此类,则需读者自己慢慢去体验了。文章写到这,也接近尾声了,最后值得一提的是Mac系统的特性(不然装了都不知道为什么好):它是基于UNIX的核心系统,增强了系统的性能、稳定性以及响应能力。且能通过对称多处理技术充分发挥双处理器的优势,提供无与伦比的2D、3D和多媒体图形性能以及广泛的字体支持和集成的PDA功能。Mac OS X通过Classic环境几乎可以支持所有的Mac OS 9应用程序,直观的Aqua用户界面使MACintosh的易用性又达到了一个全新的水平,所以大都多的人买苹果机都用于图形处理领域。
请登录后再发表评论!}

我要回帖

更多关于 苹果6下拉菜单设置 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信