在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:mattt/GroundControl开源软件地址:https://github.com/mattt/GroundControl开源编程语言:Objective-C 93.4%开源软件介绍:GroundControlRemote configuration for iOS
Many developers don't realize that they are allowed to remotely control the behavior of their app (provided that the application isn't downloading any new code). GroundControl gives you a dead-simple way to remotely configure your app, allowing you to add things like feature flags, impromptu A/B tests, or a simple "message of the day". It's built on top of AFNetworking, and provides a single category on Client CodeNSURL *URL = [NSURL URLWithString:@"http://example.com/defaults.plist"];
[[NSUserDefaults standardUserDefaults] registerDefaultsWithURL:URL]; ...or if you need callbacks for success/failure, and prefer not to listen for a NSURL *URL = [NSURL URLWithString:@"http://example.com/defaults.plist"];
[[NSUserDefaults standardUserDefaults] registerDefaultsWithURL:URL
success:^(NSDictionary *) {
// ...
} failure:^(NSError *) {
// ...
}]; ...or if you need to use an HTTP method other than GET, or need to set any special headers, specify an NSURL *URL = [NSURL URLWithString:@"http://example.com/defaults.plist"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:URL];
[[NSUserDefaults standardUserDefaults] registerDefaultsWithURLRequest:request
success:^(NSURLRequest *, NSHTTPURLResponse *, NSDictionary *) {
// ...
} failure:^(NSURLRequest *, NSHTTPURLResponse *, NSError *) {
// ...
}]; Server CodeGroundControl asynchronously downloads and reads a remote plist file. This could be a static file or generated dynamically, like in the following examples (see also the complete Sinatra application found in Rubyrequire 'sinatra'
require 'plist'
get '/defaults.plist' do
content_type 'application/x-plist'
{
'Greeting' => "Hello, World",
'Price' => 4.20,
'FeatureXIsLaunched' => true
}.to_plist
end Pythonfrom django.http import HttpResponse
import plistlib
def property_list(request):
plist = {
'Greeting': "Hello, World",
'Price': 4.20,
'FeatureXIsLaunched': True,
'Status': 1
}
return HttpResponse(plistlib.writePlistToString(plist)) Node.jsvar plist = require('plist'),
express = require('express')
var host = "127.0.0.1"
var port = 8080
var app = express()
app.get("/", function(request, response) {
response.send(plist.build(
{
'Greeting': "Hello, World",
'Price': 4.20,
'FeatureXIsLaunched': true,
'Status': 1
}
).toString())
})
app.listen(port, host) LicenseGroundControl is available under the MIT license. See the LICENSE file for more info. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论