导航:首页 > 源码编译 > ios游戏源码下载

ios游戏源码下载

发布时间:2022-01-29 08:46:23

㈠ 葫芦侠ios版下载源代码

http://www.huluxia.com/pro/index.html
reg.huluxia.net/cydia

㈡ GitHub 上有哪些完整的 iOS-App 源码值得参考

1. Coding iOS 客户端

Coding官方客户端. 笔者强烈推荐的值得学习的完整APP.
GitHub - Coding/Coding-iOS: Coding iOS 客户端源代码
2. OSCHINA 的 iPhone 客户端
开源中国的iPhone客户端源码
https://git.oschina.net/oschina/iphone-app
3. Git@OSC
Git@OSC iPhone 客户端,方便用户查看Git@OSC的项目以及简单的操作issue等
oschina / git-osc-iphone
4. Firefox for iOS
GitHub - mozilla/firefox-ios: Firefox for iOS
5. zulip-ios
Dropbox收购公司内部社交服务商Zulip,然后全部开源,这是iOS App
GitHub - zulip/zulip-ios: Zulip iOS app
6. iOSSF
SegmentFault官方App
GitHub - gaosboy/iOSSF: SegmentFault官方App
7. iReddit
Reddit iPhone客户端
GitHub - reddit/iReddit: The iReddit iPhone app
8. Monkey
GitHub第三方iOS客户端
GitHub - coderyi/Monkey: Monkey is a GitHub third party client for iOS,to show the rank of coders and repositories.
9. Watch
Dribbble第三方客户端
GitHub - tuesda/Watch: A project which demonstrate how to develop a custom client on android for dribbble.com
10. Voice2Note
懒人笔记iOS客户端
GitHub - liaojinxing/Voice2Note: 懒人笔记iOS客户端
11. RSSRead
“已阅”(iOS上开源RSS新闻阅读器)
GitHub - ming1016/RSSRead: “已阅”(iOS上开源RSS新闻阅读器),有兴趣?那就Pull Requests吧
12. BeeFancy
BeeFancy仿Fancy官方APP的WIREFRAME,基于BeeFramework
GitHub - BeeFramework/BeeFancy: 仿Fancy官方APP的WIREFRAME,基于BeeFramework
13. SXNews
模仿网易新闻做的精仿网易新闻
GitHub - dsxNiubility/SXNews: High imitation Neteasy News. (include list,detail,photoset,weather,feedback)
14. Doppio
寻找最近的星巴克
GitHub - chroman/Doppio: An open source iOS app to find the nearest Starbucks store using NSURLSession, AFNetworking 2.0, Mantle and Starbucks private API.
15. Anypic
类似于Instagram的一款App
GitHub - ParsePlatform/Anypic: An open source mobile and web app that lets users share photos similar to Instagram
16. 豆瓣相册
Slowslab iOS应用 豆瓣相册 精选集 开源项目
GitHub - TonnyTao/DoubanAlbum: Slowslab iOS应用 豆瓣相册 精选集 开源项目,仅供学习参考
17. ChatSecure-iOS
Objective-C写的XMPP聊天应用
GitHub - ChatSecure/ChatSecure-iOS: ChatSecure is a free and open source encrypted chat client for iPhone and Android that supports OTR encryption over XMPP.
18. NotificationChat
Objective-C写的完整的聊天应用
GitHub - relatedcode/EncryptedChat: This is a full native iPhone app to create realtime, text based group or private chat with Parse and Firebase.
19. FakeZhihuDaily
仿知乎日报iOS客户端
GitHub - gnou/FakeZhihuDaily: 仿知乎日报iOS客户端
20. ruby-china-for-ios
RubyChina官方客户端
GitHub - ruby-china/ruby-china-for-ios: Ruby China client for iOS
21. Meizi
豆瓣妹子图iOS客户端
GitHub - Sunnyyoung/Meizi: 豆瓣妹子图iOS客户端
22. PlainReader
一款 iOS(iPhone + iPad) 新闻类客户端,内容抓取自http://cnBeta.com
PlainReader/PlainReader at master · guojiubo/PlainReader · GitHub
23. iOS-2048
用Objective-C实现的2048游戏
GitHub - austinzheng/iOS-2048: iOS drop-in library presenting a 2048-style game
24. ECMobile_iOS
基于ECShop的手机商城客户端
GitHub - GeekZooStudio/ECMobile_iOS: 基于ECShop的手机商城客户端
25. wikipedia-ios
维基网络官方App, 已上架
GitHub - wikimedia/wikipedia-ios: The official Wikipedia iOS app.
26. Sol
漂亮的扁平风格的天气App
GitHub - comyarzaheri/Sol: Sol° beautifully displays weather information so you can plan your day accordingly. Check the weather in your current location or any city around the world. Implemented in Objective-C.

㈢ ios专门下载修改版游戏的软件

操作系统不一样,无法安装在IOS系统下。
如果你想移植需要获得程序的源代码,根据ios软件的开发环境修改,重新编译才可以。
希望采纳

㈣ 怎么试运行iOS软件的源代码

分析一款ios应用的源代码方法如下:

1、首先提取整个应用文件的二进制代码,建立for循环将机器所有字符串进行排列组合并标记后编译。

2、再建立for将应用文件二进制代码同所有的字符串排列组合编译成的二进制文件进行对比。

3、最后通过标记就能找到应用的源代码。

㈤ 超好玩魔盒ios源代码

其实魔盒的源代码还是挺简单的,如下就是全部代码:

php"><?php	
require'./libs/Smarty.class.php';
$smarty=newSmarty();
$smarty->assign('title','博客正文');

if(!isset($_GET["blogid"])||!is_numeric($_GET["blogid"]))
{
$smarty->assign('info','您所查看的文章不存在或已经被删除。');
$smarty->display('wrong.html');
exit();
}

$blogid=$_GET["blogid"];
$mysqli=newmysqli("localhost","root","","herblog");
$sql="selectid,datecreate,readcnt,commentcnt,title,blogfromblogwhereid='".$blogid."'";
$rst=$mysqli->query($sql);
if(!$rst)
{
//数据查询出错
$smarty->assign('info','服务器忙,请稍后重试');
$smarty->display('wrong.html');
$mysqli->close();
exit();
}

if($row=$rst->fetch_array())
{
$smarty->assign('blog',array(
'id'=>$row[0],
'date'=>$row[1],
'readcnt'=>$row[2],
'commentcnt'=>$row[3],
'title'=>$row[4],
'blog'=>$row[5],
));

$hasComment=0;
$sql="select`id`,`date`,`ip`,`user`,`text`fromcommentwhere`blogid`='".$blogid."'";
$rst=$mysqli->query($sql);
if($rst)
{
$comments=array();
while($row=$rst->fetch_array())
{
$comments[]=array(
'date'=>$row[1],
'user'=>$row[3],
'text'=>$row[4]
);
$hasComment++;
}
$smarty->assign('comments',$comments);
}

$smarty->assign('hasComment',$hasComment);
$smarty->display('blog.html');
}
else
{
$smarty->assign('info','您所查看的文章不存在或已经被删除。');
$smarty->display('wrong.html');
}

if($rst)
{
$rst->free();
}
$mysqli->close();
?>

㈥ 有那些ios游戏软件源

一般都是威锋,苹果园,多玩

㈦ 威锋网IOS固件下载 源代码

这什么源码啊?就是一个连接apple iphone各个固件版本的地址菜单罢了。。自己也可以做嘛

㈧ iOS的,斗地主和麻将的游戏源码,哪里能有啊,想学习一下~

必胜怎么可能?一般要看你做哪门了啊?比方地主的,要给你上家压力,给他主动出牌的自由,别人要出你就要压,保证不让别人逃牌,让主动保持在自己手里.还有上家是拦地主的一般出错把地主的副牌放掉就可以结束了啊.不算必胜,只是一个宗旨.
窍门道也是有,当你有大牌接手不妨打一对,或单张,如果没人要(有弹不用,三个不拆,连对...),接着打,直至自己的副牌逃走,就可以采取攻势了.

㈨ 急急急求一个Flash类似接苹果的游戏源码,外加有不同的游戏级别和as.文件。感谢!!!

需要使用以下软件:功能不须多说,功能完备,不仅能制作FLASH动画片与游戏,还支持AS动态脚本..免费下载:http://hi..com/msoffice2003p/blog/item/4a51ee938f7dccabc9eaf4b7.html安全无毒,安装完成即可永久使用支持32位和64位的WINDOWS7、 XP、WIN2000、WIN2003等

阅读全文

与ios游戏源码下载相关的资料

热点内容
单片机下载口叫什么 浏览:186
程序员的道 浏览:924
云服务器不实名违法吗 浏览:556
怎样查看文件夹图片是否重复 浏览:993
文件怎么导成pdf文件 浏览:805
打开sql表的命令 浏览:101
安卓手机如何面部支付 浏览:37
天元数学app为什么登录不上去 浏览:822
明日之后为什么有些服务器是四个字 浏览:102
安卓系统l1是什么意思 浏览:24
服务器一直崩应该用什么指令 浏览:922
cm202贴片机编程 浏览:728
php构造函数带参数 浏览:178
解压电波歌曲大全 浏览:344
为啥文件夹移到桌面成word了 浏览:858
命令符的安全模式是哪个键 浏览:759
编程中学 浏览:956
单片机求助 浏览:995
ug加工侧面排铣毛坯怎么编程 浏览:273
程序员有关的介绍 浏览:738